add new line to string php code example
Example 1: append new line php
$data = 'some data'.PHP_EOL;
$fp = fopen('somefile', 'a');
fwrite($fp, $data);
Example 2: php new line
//let a variable contain multiple line
//add <br> tag in string
$variable = "123 <br> ";