print new line in php 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: new line in php

<?php
echo "Hello world this is example \r\n in php.";
echo "<br>";
echo nl2br("You will find the \n newlines in this string \r\n on the browser window.");
?>

Example 3: php new line

//let a variable contain multiple line
//add <br> tag in string
$variable = "123 <br> ";

Tags:

Php Example