Could someone tell me how to add a new line in a text that I enter in a MySql table?
I tried using the \'\\n\' in the line I entered with INSERT I
\'\\n\'
INSERT I
You can simply replace all \n with tag so that when page is displayed then it breaks line.
\n
UPDATE table SET field = REPLACE(field, '\n', '')