say i have a variable like this $var = "this here is a friggin test";
and i wanted to print it out just like it is, with the newlines and all, how would i go about doing it?
why not use html tags for this ... ie <br /> or you could use <pre></pre>
or if you want to convert /n (new lines) to <br /> without having to manually insert the html tags.. just use nl2br($string)