$nickname = $_POST["nickname"];
$comment = $_POST["comment"];
$fp = fopen("comment.txt", "a");
fwrite($fp, $nickname + "</br />");
fwrite($fp, $comment);
fclose($fp);
Above code does not save stuff correctly on comment.txt
instead of ---nickname--- new line ---comment---- , it gives...