HI,
I want to show an image from a database but to do that I am using :
$result = @mysql_query($sql);
$data = @mysql_result($result, 0, "PICTURE");
$type = @mysql_result($result, 0, "FILETYPE");
Header("Content-type: $type");
echo $data;
but after this I also want to show some text info. How can I do this ? I
will have to use something else besides header. Please Help.
Thanks,
Vishal
--
PHP Database 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]