I am looking to insert a user's input from a textarea into a mysql database. As of now, if the user types the following:
"Hello.
hello."
It will be inserted into the database without the line breaks. How can I fix this?
If using PHP, i suggest using $message = nl2br($message);
This will turn line breaks into br's for you.