Hello
How do I get low ASCII chracters into a string.
eg $myvar = $myvar."<";
works
but $myvar = $myvar."
";
does not work; nothing is added to the string.
Same with $myvar = $myvar.chr(60);
This works - chr(9) does not.
It seems you can down down as low as 14 and the low ASCII character gets added to the string, but 13 and below don't get added.
Now in BASIC you can add CHR$(13) etc and lower - no problem.
You can do it in C - but another way.
But not in PHP.
How can I add ASCII 9 to a string??
Any ideas???
Paul