Line breaks will not work between HTML statements.
You can use the <PRE> function to enable this
<HTML><BODY>
text here
<pre>
<?php print "\r\n"; ?>
</pre>
more text
using just \r\n will result in a linebreak but not a <BR>. your browser will register this as whitespace and remove it.
|