I need to retrieve some HTML tags from a database to display in my page. But when the web server outputs the query result (a small html chunk), it encodes the HTML before outputing on the page.
Example : <a>
becomes <a>
The server behavior cannot be changed. If I could change it, I would!
Is there a way I can encode my HTML chunk before storing it in db so when the server renders the page, the chunk gets encoded/decoded(?) and it gets displayed properly ?
I'm not sure it's even possible.