I've been having this issue with submitting and storing textarea content, to which I've been unable to find a proper solution.
I have a form, with a textarea field, called "description".
When I submit the form with multiline text, like
Line 1
Line 2
Line 3
It gets stored in the mySQL db with much more new lines. It becomes :-
Line 1
Line 2
Line 3
when I check the db with phpmyadmin.
I've tried both VARCHAR and TEXT types, its the same. What do I need to do to store the textarea content accurately?
The relevant codeigniter lines are aRow[$strField] = strip_tags($this->input->post($strField)); $this->db->insert($this->strTable, $aRow);
$strField will be my textarea field, and the insert is a CI function.
mysql_real_escape_stringfunction? – Ewan Heming Mar 9 '11 at 5:06