How to write data in a file to the next line
fwrite($ourFileHandle , $_POST[user]);
fwrite($ourFileHandle , "\n");
fwrite($ourFileHandle , $_POST[address]);
I want the following output
Peter
Main.st
How can i do that?
I tried many time,but Peter and main.st are on the same line.