Hi
I am trying to add a text in php where a "<" and ">" sign exits in a string, however when I view the string I get '%3C' and '%3E' respectively.
I tried most of the php functions related to html entities such as:
htmlentities
html_entity_decode
htmlspecialchars
I viewed the html signs table but never found that '<' is equivalent to '%3C' or '>' is equivalent to '%3E'. But rather I found they are equivalent to '<' and '>' respectively.