テキスト領域にテキストを入力してから送信を押すと、現在の画面に表示される簡単な日記のウェブサイトを作成しようとしています。次に、テキスト領域にさらにテキストを入力できるようにしたいのですが、送信を押すと、新しい行に表示されます。test、test1、test2 の 3 つの文字列を送信すると、次のようになります。
Yes the test still works This is a test the test was successful This is a test
この出力が欲しい
This is a test
the test was successful
Yes the test still works
ここに私のphpがあります
<?php
$msg = $_POST["msg"];
$posts = file_get_contents("posts.txt");
chmod("posts.txt", 0777);
$posts = "$msg\r\n" . $posts;
file_put_contents("posts.txt", $posts, FILE_APPEND);
echo $posts;
?>