phpbar.de logo

Mailinglisten-Archive

Re: [php] Mediendatenbank
Archiv Mailingliste php_(at)_infosoc.uni-koeln.de

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [php] Mediendatenbank



Oliver Kurlvink wrote:
> 
> Grafiken sollen per PHP (Formulare) uploadbar sein, bestimmten
> Kategorien zugeordnet werden und dann als BLOB in mysql gespeichert
> werden. Spaeter sollen diese Grafiken wieder auswaehlbar sei und in
> der Site angezeigt werden koennen im Stil von:
> 
> <img src="bildchen.php3?pic=4">
> 
> startet ein PHP-Script, was aus der MySQL das Blob rauszieht und als
> Grafik an den Browser schickt. Geht sowas theoretisch in dieser
> Konstellation?

Klar, kein Problem.

<?php
	Header ("Content-Type: image/jpeg"); // oder anderes Format
	$link = mysql_connect(....);
	mysql_select_db(....);
	$foo = mysql_query("SELECT image FROM table WHERE id=$pic");
	$bar = mysql_fetch_array($foo);
	print $bar[image];
?>

So in etwa dürfte das funktionieren. Untested...

Gruß,
Philipp.
-- 

 w e b f a c t o r y
  Philipp Bosch <pb_(at)_webfactory.de> - Geschaeftsfuehrer
  Im Uckerfeld 19 - 53127 Bonn - http://www.webfactory.de/
  Fon: 0228-9195200 - Fax: 0228-9195202 - ICQ: 6907593

Home | Main Index | Thread Index

php::bar PHP Wiki   -   Listenarchive