php newline
"\r\n"
Unusual Unicorn
"\r\n"
<?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.");
?>
echo "\n";
echo 'hollow world' . PHP_EOL;
return nl2br("This is the cointracker sample text.\nThis should be line 2!");
//let a variable contain multiple line
//add <br> tag in string
$variable = "123 <br> ";