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 < and > .
<textarea>>html></textarea>
in textarea , change to . I want to show <html> , how to make it ?
Escape the
&by using&.Change this:
To this:
If you’re using PHP you can automatically do this with
htmlspecialchars().