Hi,
I'm using this:
$myfile = fopen("file", "aw");
$fp = fwrite($myfile, $var."\n");
fclose($myfile);
Everything works great except its all on one line in the file with a special character where it should skip down to the next line... is there a way to have it automaticaly write on a new line?
Thanks
Mark