Answers for "nl2br"

PHP
2

php replace \n by <br>

$var = str_replace(array("\r\n","\n"),'<br>', $var);
Posted by: Guest on November-01-2020
0

nl2br() php

// add to the functions file
function translateLineBreaks($string) {
	$result = nl2br ($string);
  	return $result;
}
Posted by: Guest on July-26-2020

Browse Popular Code Answers by Language