special characters don’t work (\n, \t, …)
what is the problem
[php]
<?php $string = "Hello \nWorld"; echo $string; ?>[/php]
Output:
Hello World
Not:
Hello
World
special characters don’t work (\n, \t, …)
what is the problem
[php]
<?php $string = "Hello \nWorld"; echo $string; ?>[/php]
Output:
Hello World
Not:
Hello
World
should never be
Hello World
try
[php]
[/php]
Thank you wilson382, it works well
you are welcome.