hey im trying to make a file database but it just goes on and on a single line.question is: how do i make a new line after an entry is made?
<?php
$user=$_POST;
$pass=$_POST;
$file="fileone.txt";
$content= $user . ",";
file_put_contents($file,$content,FILE_APPEND);
$content2= $pass . "<br>";
echo nl2br(""); //??????
file_put_contents($file,$content2,FILE_APPEND);
?>