First, everuthing was working fine and now it's not.
If I type in the textarea of my form
EE
is
the
best
using the enter key to go to a new line, it now insert in the db
EE\r\nis\r\nthe\r\nbest
I used
$text = $_POST['text']
$text = str_replace("\n", "<br>\n", $text);
to replace the new line character, I also try nl2br() function to no avail and like I said it was working fine before, any advice?
Start Free Trial