ok sistemato..
adesso però non scrive più l'indirizzo sul file del server..
GRAZIE PER LA PAZIENZA
il codice è questo:
Codice PHP:
<?php
$email = $_POST['email'];
if (!eregi("^[a-z0-9][_\.a-z0-9-]+@([a-z0-9][0-9a-z-]+\.)+([a-z]{2,4})", $email)) {
echo
"<h1>". "ATTENZIONE. INDIRIZZO EMAIL NON CORRETTO" ."</h1>".
"<BR>".
"<meta http-equiv='Refresh' content='2; index.html'>"
;
} else {
echo
"<h2>". "Iscrizione alla Newsletter avvenuta con successo." ."</h2>".
"</br>".
"Riceverai al piu' presto le ultime news".
"<meta http-equiv='Refresh' content='7; index.html'>".
"<br>".
"<br>";
echo "<h1>". "Indirizzo Email: ".$email."</h1>".
$write_file = fopen("NOMEFILE.txt","a");
fwrite($write_file,"email: $email\n\n");
fclose($write_file)
;
}
?>
grz
LCnasa