View Single Post
  #3 (permalink)  
Old 06-12-2006, 07:08 PM
Crane's Avatar   
Crane Crane is offline
Programming Expert
 
Join Date: Nov 2005
Posts: 399
Rep Power: 14
Crane is on a distinguished road
Default

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.
Reply With Quote