because each OS have different ASCII chars for linebreak: windows = unix = mac = <?php echo nl2br("foo isn't bar"); ?>
// add to the functions file function translateLineBreaks($string) { $result = nl2br ($string); return $result; }