Hi all,
I've stored on a db using blob fields, the content of some image file.
Ayones know how to write on these image on fly w/o using the filesystem? I
mean:
<?
$sql="SELECT file_img FROM ..";
....
while($val=mysql_fetch_row($select)){
header("Content-type: image/jpeg");
$img=$val[0];
//here I need to write on this $img ... but How can I do?
...
?>
many thanks in advance
max
--
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]