Hi, I have a problem and I wonder if someone knows how to solve it. I don't know why, but the ESCAPED STRINGS like \n (line feed) or \t (tab)... don't work. I think that can be a problem with the php install or maybe with the php.ini configuration. But I don't know where I can fix that.
Example...
*** This is the code
print "hi \n";
print "good \n";
print "morning \n";
*** This should appear like this:
hi
good
morning
*** instead of this... on my computer appear like this
hi good morning
*** I hope someone know the answer, thanks for reading this.