Answers for "how to use newline in php"

PHP
2

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";
?>
Posted by: Guest on March-12-2021
0

newline not working php

// When you run a PHP script in a browser, it will be rendered as HTML by default.
// Use <br /> instead or modify the header to content type plain text
echo "Hello <br /> World";
Posted by: Guest on November-27-2020

Browse Popular Code Answers by Language