echo "View this page's html source in your browser
\n\n" ;
echo "Notice how the line feed char \n breaks up the html source \n when the source is viewed, \n" ;
echo "but you need a br tag to have \n the html go to the next line.
\n\n" ;
echo "Special chars: line feed=\n carriage return=\r tab=\t backslash=\\ dollar sign=\$ quote=\"
\n\n" ;
$str = "This is a string";
$str = $str . " with some more text";
$str .= " and a newline at the end.";
echo $str ;
?>