php-db | 2002122
Date: 12/30/02
- Next message: nikos: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Previous message: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- In reply to: Nikos Gatsis: "[PHP-DB] SHOW PICTURE FROM DATABASE"
- Next in thread: nikos: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Reply: nikos: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> 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
- Next message: nikos: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Previous message: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- In reply to: Nikos Gatsis: "[PHP-DB] SHOW PICTURE FROM DATABASE"
- Next in thread: nikos: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Reply: nikos: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

