Answers for "/n 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
3

new line php

echo "<br>";
Posted by: Guest on December-09-2019
0

php why "n" not new line

if "testn" not return, new line
  1st solution:echo "test".PHP_EOL;
  2nd solution:<?php header('Content-type: text/plain'); ?>
  3rd solution:"<br />" instead of "n" or "rn"
Posted by: Guest on July-13-2021

Browse Popular Code Answers by Language