Hi there!
A basic problem...
I'm trying to use a php script to generate client side javascript, but for some reason using /n from an echo statement just prints '/n', not a new line ...
I've tried /r/n for windows etc, but on linux I get the same problem...
I can't use <br> as I'm rendering javascript, not HTML...
so
echo ('one' . '/n' . 'two');
produces
onetwo
reather than
one
two
Any ideas?