Grazie!

function leggiFile($percorso, $nome){
$file= $percorso.$nome; // upload/anna.html
if (!$p_file = fopen($file,"r")) {
echo "Problema nell'apertura file $file";
} else {
while(!feof($p_file))
{
$linea = fgets($p_file, 255);
echo "$linea
";
}
fclose($p_file);
}

show_source($file);
}