ho guardato sul forum vari post riguardo all'argomento o cose simili ma non sono riuscito a tirare fuori esattamente quello che mi serve.
Vorrei salvare i dati inseriti in un form in un file .txt qyestio è ciò che ho fatto:
form html:
<FORM name="LinkExchangeCornerSignUp" method="post" action="http://linkexchange.altervista.org/dati.php">
Title: <input type="text" value="Title of your site">
URL: <input type="text" value="URL of your site"></label>
Description: <input type="text" value="Description of your site">
E-mail: <input type="text" value="Your e-mail address">
<input type="submit" value="invia I dati">
</FORM>
dati.php file a cui il form manda i dati:
<?
$db="http://linkexchange.altervista.org/dati.txt";
$title = $_REQUEST['title'];
$URL = $_REQUEST['URL'];
$description = $_REQUEST['description'];
$email = $_REQUEST['email'];
$riga_messaggio = "$title|$URL|$description|$email\n";
if(empty($riga_messaggio)){
echo"The field is empty";
}
else {
$fp=fopen($db,"a+");
fwrite($fp,$riga_messaggio);
fclose($fp);
echo"Thank you to join Link Exchange Corner
<meta http-equiv='refresh' content='3;URL=http://linkexchange.altervista.org'>";
}
?>
Sicuramente sbaglio da qualche parte, ma il mio occhio non troppo esperto non nota nulla di strano...