hi
i need help..how can i store image in mysql database
and i want to retrive that image
can anyone suggest plz
i need help..how can i store image in mysql database
and i want to retrive that image
can anyone suggest plz
while($log=mysql_fetch_array($q))
{
print $log['file'];
}
{
header("Content-type: image/png");
echo $log['file'];
}
Comment