> I have a php script that call binary data of pictures stored in
database.
> The script works fine in IE but not in Netscape (ver 4.7, &  6.01).
> Any ideas?
> 
> ---------------------------------
> the html tag is like: <img src="showpict.php?pro_id=1">
> 
> where showpict.php:
> 
>  $query="SELECT pict FROM pict WHERE pro_id= '$pro_id";
>  $result=mysql_db_query($database, $query, $conn) or Die
(mysql_error());
>  list($photo)=mysql_fetch_row($result);
>  $type = $photo_type;
>  if (!empty($photo)) {
>   header("Content-Type: {$type}");
>   echo $photo;
>  }

Call up showpict.php?pro_id=1 in Netscape and see if you get an error.
Just type it in and call it up by itself.

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



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

Reply via email to