HTML encoding functions
htmlspecialchars($str) Converts < > & and " to their HTML entity equivalents, eg. < becomes <
urlencode( ) All punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding. Spaces converted to +.
urldecode( )All punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding. Spaces converted to +.
COMMENTS http://php.weblogs.com/php_jscript_vbscript_1
|