Answers for "how to add new line in php"

PHP
2

append new line php

$data = 'some data'.PHP_EOL;
$fp = fopen('somefile', 'a');
fwrite($fp, $data);
Posted by: Guest on May-28-2020
3

new line php

<?php
echo "If you view the page source \r\n you will find a newline in this string.";
echo "<br>";
echo nl2br("You will find the \n newlines in this string \r\n on the browser window.");
?>
  // 2 Way
  <?php echo $clientid, ' ', $lastname, PHP_EOL;?>
Posted by: Guest on October-19-2020
3

php newline

"\r\n"
Posted by: Guest on February-15-2020
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.");
?>
Posted by: Guest on June-29-2020
1

php new line

return nl2br("This is the cointracker sample text.\nThis should be line 2!");
Posted by: Guest on February-22-2021
2

php new line

//let a variable contain multiple line
//add <br> tag in string
$variable = "123 <br> ";
Posted by: Guest on June-09-2020

Browse Popular Code Answers by Language