php \n to br code example
Example 1: nl2br() php
// add to the functions file
function translateLineBreaks($string) {
$result = nl2br ($string);
return $result;
}
Example 2: br php
echo "$variabile.<br>";
// add to the functions file
function translateLineBreaks($string) {
$result = nl2br ($string);
return $result;
}
echo "$variabile.<br>";