nl2br php code example
Example 1: php replace \n by
$var = str_replace(array("\r\n","\n"),'<br>', $var);
Example 2: 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");
?>
Example 3: nl2br() php
// add to the functions file
function translateLineBreaks($string) {
$result = nl2br ($string);
return $result;
}