Showing posts with label line break. Show all posts
Showing posts with label line break. Show all posts

Friday 27 July 2012

HTML line break


Inserts HTML line breaks before all newlines in a string

This code is very useful when we insert large content with number of new lines in the database table.
In case of html line, it inserts <br /> for all \n.

<?php
echo nl2br("Hello \n World");
?>
OUTPUT will be

Hello
World