Hi!
I have images in my DB and want to write them to disk. I tried to copy but
nothing happend,
the image only pops up in my browser with "echo". I want it saved in a
directory on my server.
-----
$query = "select bin_data,filetype from $table where id=$id";
$result = @MYSQL_QUERY($query);
$image = @MYSQL_RESULT($result,0,"bin_data");
echo $image;
$destfile="image.jpg";
copy($image,$destfile)
-----
Thanks for any help
Regards,
Jan
--
Jan Grafström
Lillemans Hus AB
Sweden
46 (0)611-60920
46 (0)70-6409073


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to