du willst ein bild mit deinem ausgabe-script anzeigen. dort DÜRFEN NUR BILDDATEN enthalten sein.
der preis hat dort nix verloren.
der preis hat dort nix verloren.
<?php
@mysql_connect("localhost","dbo74832337","RQvvd8m8") or die('can not connect database host');
@mysql_select_db('db74832337') or die('can not select database');
$query = 'SELECT id, bin_data, filetype,produktname1,produktname2,beschreibung,datum,sendtime,preis,beurteilung,filelink
FROM binary_data_dvd
ORDER BY RAND() LIMIT 1';
$result = @MYSQL_QUERY($query);
$data = @MYSQL_RESULT($result,0,"bin_data");
$type = @MYSQL_RESULT($result,0,"filetype");
$name1 = @MYSQL_RESULT($result,0,"produktname1");
$name2 = @MYSQL_RESULT ($result,0,"produktname2");
$beschreibung = @MYSQL_RESULT($result,0,"beschreibung");
$datum = @MYSQL_RESULT($result,0,"datum");
$sendtime = @MYSQL_RESULT($result,0,"sendtime");
$preis = @MYSQL_RESULT($result,0,"preis");
$beurteilung = @MYSQL_RESULT($result,0,"beurteilung");
$link = @MYSQL_RESULT($result,0,"filelink");
echo "$preis";
Header( "Content-type: $type");
echo "$data";
?>
Kommentar