|
remember you are using php to print text. this text is going to be html.
\n will only display if you view source. \n is a regular line feed .. html does not recognize line feeds, however if you view source, you will notice that it does skip a line.
if you want your line break to show up in html, then it is <br>
i use line feeds to nicely format my html .. but if you want the line break to show up in html, then you must print a <br>.
|