php new line echo from for code example
Example 1: newline in php
<?php
echo nl2br("If you want that '\n' works. \n Then use nl2br() function!");
echo "<br> can also be used.";
echo "nl2br() is in-built function whereas <br> is html tag";
?>
Example 2: echo new line
echo -e "hello\nworld"