I am try to write a php script that echo's a string, it doesn't recognize the end of line function in there.
e.g
echo "thank you \n "
echo "for coming over"
The \n is ignored and it prints the whole line as thank you for coming over.
Got the same result for the following to:
echo "thank you ".PHP_EOL.;
echo "for coming over".PHP_EOL.;

<br>. – Tomalak Jun 29 '11 at 11:36