I am pulling data from a table in my database and inserting it into a form - therefore I can edit it and save it back to the table.
My current problem is my data in the table has HTML characters like
<br /><br />
which as we all know are line breaks - I don't want them to display like html characters though... In the textarea where I have outputted them to I would like them to just display as line breaks within the text area...
I have tried using htmlentities and htmlspecialchars with no luck.