hi i was wondering but maybe i missed up somenthing about htmlspecialchars()
, why does this function does not a replacement of all this html special character
html special chars list
cause for example the char %
is not replaced as i can see
the php manual says about:
'&' (ampersand) becomes '&'
'"' (double quote) becomes '"' when ENT_NOQUOTES is not set.
"'" (single quote) becomes ''' only when ENT_QUOTES is set.
'<' (less than) becomes '<'
'>' (greater than) becomes '>'
so about other chars ? no function to replace them all?