salve ragazzi non riesco a visualizzare le mie immagini memorizzate in un campo tipo blob di un database, quando estraggo l'immagine e la stampo a video mi esce la X come se l'immagine non fosse stata caricata, come mai ? ecco il codice:
<?
header("Content-type: image/gif");

include("config.PHP");
include("selezione.PHP");


$query=mysql_query("SELECT immagine FROM `film` where id='2' ") OR DIE ("select Non Riuscita");
$row=mysql_fetch_array($query);


echo $row['immagine'];

?>




<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>

</body>
</html>