str replace \n with br php code example
Example: nl2br() php
// add to the functions file
function translateLineBreaks($string) {
$result = nl2br ($string);
return $result;
}
// add to the functions file
function translateLineBreaks($string) {
$result = nl2br ($string);
return $result;
}