A non-programmer newbie here.
I don't understand why my code doesn't print a newline.
For instance:
$number = 10;
echo 'There are $number members in the group';
echo "\n";
echo "There are $number members in the group";
The 2 lines ouput on the same line.
Same goes for \t.
Thanks for your patience.