Hi
I'm now in third week of learning PHP language. I'm must admit that it interested me so much that I'm studying it until 2 o'clock in the morning.
I have smaller problem.
Special characters like \n for new line or \t for tabulator don't work for me.
It doesn't report me any error they are just not executing, like they would not be present in my instructions.
My code is next:
[FONT=Arial]<?php
$string1 = "String in \n\tdouble quotes";
echo $string1;
?>[/FONT]
It should give result in IE:
[FONT=Arial]String in
double quotes[/FONT]
But my result is still all in one row without tab indent:
[FONT=Arial]String in double quotes[/FONT]
Any idea how to fix this?
Regards
Sasha from Slovenia