Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING' in /home/shishcob/www/test2.php on line 18
if($id) {
$db=mysql_connect("localhost","shishcob","yenots");
mysql_select_db("shishcobob",$db);
$query = "select bin_data,filetype from binary_data where id=$id";
$result = mysql_query($query);
$row = mysql_fetch_array($result);
Header( "Content-type: $row["type"]");
echo $row["data"];
}
Line 18 is Header( "Content-type: $row["type"]");
Trying to get the php3 version of this working under php4 for me. Got the insert to work but not the get.