Flyier wrote:You can use echo "<br/>"; instad of \n.
That may be what the original poster is after. The "<br/>" is only relevant with regard to HTML output, but would be useless for plain text output, CSV output, etc.; and you might want both ("<br>\n") when you use it anyway (to keep the HTML source from being one run-on line). However, using a <br> is more often than not a poor substitute for what should really be more semantically meaningful HTML mark-up (<p>, <li>, etc.).