html - Retrieving formatted text from MySQL database -


i send text html tags mysql database:

<p>hello</p><br> <h3>header</h3> 

but when retrieve database jsp page looks like:

&lt;p&gt;hello&lt;/p&gt;&lt;br&gt; &lt;h3&gt;header&lt;/h3&gt; 

how preserve rich text formatting when outputting?


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -