hello there ia have a script where in all the images stored in DB but i want this images to be stored on a directory all the images are into blob format
so i made a query like this
$sql = "select image from contents where mmsid='$id'";
$sqlQry = mysql_query($sql);
while($hRow = mysql_fetch_array($sqlQry)){
$image = $hRow["image"];
}
now i cant print this on a browser but what should i do to save the image to a file?
help please.
thank you.