Per semplificare tutto ho creato uno zip
In caso non vi fidiaste scrivo tutto sotto:
Questo è il file "file.html"
Codice HTML:
<form method="post" action="file.php" enctype="multipart/form-data" id="form">
His nickname: <br><input type="text" name="nick" placeholder="Nickname">
<br>His FC:<br> <input type="number" name="code" placeholder="Friend Code">
<br>Comments:<br> <textarea cols="30" rows="3" name="comment" form="form" placeholder="Enter here your comments"></textarea>
<br>
<br>
<input type="submit">
</form>
E questo è il file "file.php":
Codice PHP:
<?
$nick=$_POST['nick'];
$number=$_POST['number'];
$comment=$_POST['comment'];
if ($nick != null && $number != null){
echo "Risultato del file di testo:<br>";
$var=@fopen("file.txt","a+");
@fwrite($var, "$nick - $number - $comment \n");
$var2=file("file.txt");
@fclose($var);
$i=count($var2);
for($a=0; $a<=$i; $a++){
echo $var2[$a]."<br>";
}
}
?>
Ho creato anche il file .txt dove in teoria dovrebbero entrare le righe
A me sembra tutto giusto, ma non funziona.
Vorrei che mi aiutaste a capire.
Bruno