outputting a new line
Posted: Wed May 13, 2009 6:03 am
How do I output a new line in php using
fwrite?
only outputs $name and $comment, with the \t as tabs but ignores the \t.
Any ideas?
fwrite?
Code: Select all
$output = $name."\t".$comment."\t"."\n";
$fp = fopen("d:\hshome\c239198\local54memberforum.com\info.txt", "ab");
fwrite($fp, $output);
Any ideas?