Parsing HTML tags from database field

Brent W

Well-known member
I have content in a database field that I am pulling out and putting into an external page that already had html tags in it formatting the content the way I want. However, when I query and pull out the data the html tags show up as plain text. How can I get the page to parse the html tags that are in the database?
 
You will most likely need to do htmldecode() on it since I believe it's converted to the encoded equivalents in the database.
 
Top Bottom