Sorry for this simple question.
File1 doesn't make line brake between Hello World.
Any ideas why?
When I use <br> in file 2 it does put brake between $var1 and $var2, but when I use "\n" it doesn't
The "\n" and "<br>" have the same functionality.
//File1
<?php $var1 = "Hello";
$var2 = "World";
echo $var1."\n";
echo $var2; ?>
//File2
<?php $var1 = "Hello";
$var2 = "World";
echo $var1."<br>";
echo $var2;
?>