Hallo zusammen
Hab schon mal gesucht, aber nichts passendes gefunden.
Ich speichere Bilder in einem Blob ab. Scheint zu klappen.
Das auslesen geht wie folgt:
echo "<image src='getpic.php3?ID=$id1'>";
get pic sieht wie folgt aus:
Statt des Bildes wird allerdings nur ein Platzhalter angezeigt.
Hatt jemand sowas schon gehabt ?
Gruß Micha
Hab schon mal gesucht, aber nichts passendes gefunden.
Ich speichere Bilder in einem Blob ab. Scheint zu klappen.
Das auslesen geht wie folgt:
echo "<image src='getpic.php3?ID=$id1'>";
get pic sieht wie folgt aus:
PHP-Code:
<?php
// getdata.php3 - by Florian Dittmer <dittmer@gmx.net>
// Example php script to demonstrate the direct passing of binary data
// to the user. More infos at [url]http://www.phpbuilder.com[/url]
// Syntax: getdata.php3?id=<id>
if($id) {
// you may have to modify login information for your database server:
MYSQL_CONNECT("localhost","root","1234567890");
mysql_select_db("base");
$query = "select picture,filetype from anzeigen where id=$id";
$result = MYSQL_QUERY($query);
$data = MYSQL_RESULT($result,0,"picture");
$type = MYSQL_RESULT($result,0,"filetype");
//header("Content-Disposition: attachment; filename=$filetype");
header("Content-type: $filetype");
print base64_decode($data);
};
?>
</body>
</HTML>
Hatt jemand sowas schon gehabt ?
Gruß Micha
Kommentar