Someone cuold tell me why this script work on Netscape
and Mozilla but not under IE
<?
$filename = "1.jpg";
$fd = fopen ($filename, "rb");
$contenuto = fread($fd, filesize($filename));
$contenuto = base64_encode($contenuto);
$str = '<OBJECT type="image/gif" width="200" height="200"
data="data:image/gif;base64, $contenuto">Prova</OBJECT>';
echo("<html><body>$str</body></html>);
fclose ($fd);
?>
Thanks.
😕