The following examples (see PHP 5 for Dummies, p. 82)
do not produce the expected results:
$string = "Hello \nWorld";
echo $string;
and
$string = "Line 1 \n\tLine 2";
echo $string;
The first instance is for a line break such that the words are stacked:
Hello
World
The second instance is for a line break with a tabbed second line:
Line 1
Line 2
Do I need to change or add something in one of the configuration files?
Otherwise, is there a known fix for this? Thank you for any assistance.