mi servirebbe da modificare questo script...
Codice PHP:
<?
// Displays the form to add emails to list;
$filelist = "sitiiscritti.txt";
if (isset($email)) {
addsEntry($email);
}
function displaysAddEntryForm() {
echo "<form name=addsEntry action=iscrizione.php method=post>";
echo "<span class=nl-tit>Iscriviti</span><br>";
echo "Per partecipare al contest<br>";
echo "<br>";
echo "<input type=text name=email class=nl-input style=width:100% value=URL... size=15>";
echo "<br>";
echo "<input type=submit name=submit value=Iscriviti class=nl-bot>";
echo "</p>";
echo "</form>";
}
// Adds emails to list;
function addsEntry($email) {
$fp = fopen($GLOBALS["filelist"], "a");
$emailsize = strlen($email . "\n");
$fw = fwrite($fp, $email . "\n", $emailsize);
if ($fw)
echo "<h2><div align=center>Sei iscritto!</div></h2>";
else
echo "Errore!";
}
displaysAddEntryForm();
?>
lo script aggiunge le email una dopo l'altra con un semplice cr...
a me serve che ci aggiunga un <br>
si puo' fare, si??