|
This is most likely not a database problem. MySQL doesn't care if you enter rich text, HTML, or plain text. The text you insert into a table only needs to be escaped (if you're using PHP, use mysql_real_escape_string().)
The field where the data is being inserted should probably be set as TEXT.
|