unable to put new line in this code
i try "\n" , <br/>
but not working
i want that when this docoment write in the file data.txt there should be new line
between First name, last name and email
<?php
$file = fopen("data.txt", "a+");
fwrite($file,"First name:$_POST[fname] Last name:$_POST[lname] Email:$_POST[email] Comment:$_POST[comment]");
?>