Using this code:
[code]
<?php echo "line1"; echo "n"; echo "line3"; ?> [/code]gives me this HTML:
[code]
line1 line3 [/code]which obviously doesn’t create a line break at all, so it just shows up on the page as “line1 line3”. I’ve had experience using PHP for all of ten minutes and am using PHP v. 5.1.4 running in safe mode. What’s wrong?