I want to display all images from my MYSQL database using PHP coding.The table having name,size,type, content fields. Please any one help me.
Am using above code to display one image from table. But i dont know to display more than one images on browser. Please any one help me.
Code:
while($row=mysql_fetch_row($imgresult))
{
header("Content-type: image/jpeg");
echo "$row[0]";
}
Comment