I'm having problems using the escape sequences/strings in php. For example, when i write:
<?php
echo("Hello\nBye");
?>
The output ends up looking like:
Hello Bye
I have tried using printf, print, all with the same result. Additionally, \t , \r don't work. I know php is running...