php replace \n by <br>
$var = str_replace(array("\r\n","\n"),'<br>', $var);
php replace \n by <br>
$var = str_replace(array("\r\n","\n"),'<br>', $var);
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;?>
nl2br php
because each OS have different ASCII chars for linebreak:
windows = \r\n
unix = \n
mac = \r
<?php
echo nl2br("foo isn't\n bar");
?>
nl2br() php
// add to the functions file
function translateLineBreaks($string) {
$result = nl2br ($string);
return $result;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us