--- "Naif M. Al-Otaibi" <[EMAIL PROTECTED]> wrote:
> I try to print some information (text and image) that I
> retrieve from an oracle DB, but I got the image printed
> as binary junk. When I put the line that print the image
> in a  html image tag, I got a red square with "X" inside.
> What can I do to solve this problem?

This is really just an HTML question. The <img> tag has an
attribute called src that should be given a URL as a value.
The URL should be an image. For example:

<img src="http://www.php.net/gifs/php_snow.gif";>

On the other hand, if you want to dump the raw image to the
browser and expect it to render it properly, you must tell
it that you are sending an image. For example:

header("Content-Type: image/gif");

Chris

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to