Hello all
I got a question about this Script:<?php
if($id) {
// you may have to modify login information for your database server:
@MYSQL_CONNECT( "");
@mysql_select_db( "amadeus_allesrock_de");
$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");
echo "&a=";
Header( "Content-type: $type");
echo $data;
};
?>
It reads images from a MySQL databas
So my question is it possible to give that PHP a variable like &Main=<?......?>
if I gona do this now it just came some text and no picture more
But i need to load this script with that variable.
Is there any possibility to do that?
Thanks a lot
Roseman