I have a textarea input in my form. Is there a way to preserve the line breaks when saving to the DB? When ever I use line breaks they are replaced with spaces and the text is saved as one paragraph.
example:
If I write this in the textarea:
" Here is a sentence. Here is another. here is one more.
This is a new paragraph. Here is a new sentence. Here is another.
Another new paragraph. And here is a sentence"
I want to save it like this:
" Here is a sentence. Here is another. here is one more.
This is a new paragraph. Here is a new sentence. Here is another.
Another new paragraph. And here is a sentence"
But instead I get this:
" Here is a sentence. Here is another. here is one more. This is a new paragraph. Here is a new sentence. Here is another. Another new paragraph. And here is a sentence"