Currently I have a tinyMCE text editor which does work. The only thing is that the text which I input to the editor is stored and retrieved as so:
<p><strong>this is the first line</strong></p> <p><em>this is the second line</em></p>
Instead of:
this is the first line
this is the second line
I think the problem is something to do with the type of field I'm using in my database. Should it be VARCHAR, TEXT or something else? Could someone shed some light on this matter? Also is there any other attributes or values I should apply to the database field if this is the problem?
Thanks very much.