php-db | 2002122
Date: 12/30/02
- Next message: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Previous message: Arno Kruit (Stichting Eljakim): "[PHP-DB] Question about rollback in mysql"
- Next in thread: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Reply: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Reply: John W. Holmes: "RE: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hello there and Marry Christmas!
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;
}
THANX
Nikos
- Next message: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Previous message: Arno Kruit (Stichting Eljakim): "[PHP-DB] Question about rollback in mysql"
- Next in thread: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Reply: Steve Cayford: "Re: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Reply: John W. Holmes: "RE: [PHP-DB] SHOW PICTURE FROM DATABASE"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

