In textarea, I load text from database and then show in textarea. I have a problem, textarea not show < and >. It has been changed to
<
>
Escape the & by using &.
&
Change this:
<html>
To this:
<html>
If you're using PHP you can automatically do this with htmlspecialchars().
htmlspecialchars()