I'm having a hard time storing a simple text field in my DB. I have the following textarea:
<textarea class="txtarea" rows="4" cols="50" name="Text" id="txt_area_post" value="" placeholder="Insira uma descrição detalhada."></textarea>
It looks like it's pretty simple, when I store the text in BD, it's all in one line.
In the BD the field is of type TEXT.
I would also like a help where someone could show me the correct way to store a large text, with validation of empty spaces, in short, the correct way to store and the solution to this error. I'm grateful for the help!