that or i am doing something wrong.
here is what i have
<?php
print "hello from php
okie dokie\n";
print 'next line perhaps';
?>
this gives me
hello from php okie dokie next line perhaps
instead of
hello from php okie dokie
next line perhaps
am i wrong on how this is supposed to work?
i cant put a <br> in there !
thanks.