When we dealing with a text area in the PHP application ,
for Example in your application given that About me feild,
suppose some of the users may given that “This is about Anil’s blog”.
When we try to insert into database then we got the some errors.
To avoid that error and insert into database without any errors:
$text = addslashes($text);
// $text is contents of text area.
// $text is contents of text area.
To add the line breaks at time of insert into database:
$test= "This
test
message";
test
message";
so insert as it is format then put below line of code when time of insert:
$text = nl2br($text);
Thank You.
Nice tip