Have read this but not sure now.
I thought you could put \n at the end of an echo stmt to get a CRLF.
This doesn't work:
<?
echo "here I am.\n";
echo "Here I am again!.";
?>
This does:
<?
echo "here I am.<br>";
echo "Here I am again!.";
?>
What is the \n for?
Real newbie quesiton.