Ancora più strano perchè ho riprovato e ora mi da.............

Warning: Cannot modify header information - headers already sent by (output started at /home/mhd-01/www.space2place.org/htdocs/mostra.php:1) in /home/mhd-01/www.space2place.org/htdocs/mostra.php on line 2

Warning: Cannot modify header information - headers already sent by (output started at /home/mhd-01/www.space2place.org/htdocs/mostra.php:1) in /home/mhd-01/www.space2place.org/htdocs/mostra.php on line 16


ti riposto il codice di mostra.php

<?php
header('Content-Type: image/jpeg');
$db_host="sql.space2place.org";
$db_user="space2pl55523";
$db_password="spac70876";
$db_database="space2pl55523";
$connessione=mysql_connect($db_host,$db_user,$db_p assword) or die ("Errore nella connessione al Mysql:" . mysql_error());
mysql_select_db($db_database,$connessione) or die ("Errore nella selezione del db:" . mysql_error());
$query="SELECT foto FROM Dettagli WHERE id='. $_GET[id]'";

$risultato = mysql_query($query) or die('Query non valida: ' . mysql_error());
$riga = mysql_fetch_array($risultato);

$foto=$riga[foto];
$length = strlen($foto);
header("Content-Length: $length");
echo $foto;
?>