I'm trying to print a newline on the code (not HTML) so i tryied this:
I supposed this will print something like
firstline
secondline
buy instead it prints just:
firstline\n secondline
any ideas why?
thanks
Mateo
PHP Code:
echo "firstline\n secondline\n";
firstline
secondline
buy instead it prints just:
firstline\n secondline
any ideas why?
thanks
Mateo
Comment