Insert multiple lines from textarea of HTML Form into MySQL database with PHP
Instead of using textfield to input one line of text, we could use textarea of HTML Form for user to input multiple lines. However if we use PHP to insert the text from textarea into the MySQL database with the same method as the textfield, all of the multiple lines will become 1 line and stored into the database. To solve this issue, we could use a PHP function:
Continue Reading →

