I'm writing to a file inserting variables from a form, how would i tell it to write to the file with <br><br> in between the variables...???? my script right now:
<?php
$newsfile = "news.html";
$fileopen = fopen ("$newsfile", "w+");
$copyfile = file_get_contents ($newsfile)
fputs ($fileopen, "$postname\n$posttext\n$copyfile\n");
print ("Go <a href="javascript:history.back(1)">Back</a>
fclose ($fileopen)
?>