このコードを使用して、ユーザー入力をテキスト ファイルに追加しています。
<?php
//establish variables
$myFile = "chapter2.txt";
$fh = fopen($myFile, 'a') or die("can't open file");
$name = $_POST["name"];
$gnumber = $_POST["gnumber"];
fwrite($fh, $name);
fwrite($fh, "\n");
fwrite($fh, $gnumber);
fclose($fh);
?>
ただし、次のようにテキスト ファイルに追加します。
名前番号
これの代わりに:
名前
番号
なぜこれが起こるのですか?