Guten Tag und Mahlzeit!
Habe ein kleines aber nicht schwieriges Problem!
Will bei diesem Quelltext noch was dazufügen, das es mit dem Bild ausgegeben wird:
Würde noch gerne die Tabelle "TEXT" hinzufügen nur wie und wo?
<?php
if($id) {
// you may have to modify login information for your database server:
@MYSQL_CONNECT("localhost","root","geheim");
@mysql_select_db("bild_maker");
$query = "select bin_data,filetype from binary_data where id=$id";
$result = @MYSQL_QUERY($query);
$data = @MYSQL_RESULT($result,0,"bin_data" );
$type = @MYSQL_RESULT($result,0,"filetype");
Header( "Content-type: $type");
echo $data;
};
?>