Save the image in the database as blob type. But i am not able to display these image below i will give the code for dislaying the image.
It will gives an output like some codes with special symbols... How to displays the image properly. I am new to php.``
<?php
while($row = mysql_fetch_assoc($result)){
$type=$row['type'];
header("content-type : $type");
echo $row['src'];
}
?>