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);
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