Avevo fatto una domanda simile, fai così (ti butto giu' due codici)
Codice PHP:
<?
$nickname = $_POST['nickname']; // Prende il nickname dal form dei commenti
$email = $_POST['email']; // Prende l' email dal form dei commenti
$commento = $_POST['commento']; // Prende il commento dal form dei commenti
$text = "<span style='font-size: 24px; font-weight: bold;'>".$nickname."</span><br /><br />".$commento."<br /><hr><br />";
if(empty($nickname) || empty($commento)) {
echo "Errore: Devi mettere un nickname e/o commento valido.";
} else {
$bef = file_get_contents("commenti.html"); // Preleva i commenti già esistenti dal file commenti.html
$fp = fopen('commenti.html','a+');
fwrite($fp, $text.$bef);
fclose($fp);
echo "Commento aggiunto con successo!";
}
?>
Non li ho provati ma dovrebbero funzionare