<html> <body>
<?php
$str = "aa\nbb\ncc\n";
echo $str;
echo nl2br( $str );
?>
</body> </html>
aa bb cc aa<br /> bb<br /> cc<br />