Answers for "nl2br() php"

PHP
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");
?>
Posted by: Guest on August-18-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