Deprecated: Function eregi() is deprecated in /home/senseles/public_html/rs/wp-content/plugins/statpress-reloaded/statpress.php on line 1654

Deprecated: Function eregi() is deprecated in /home/senseles/public_html/rs/wp-content/plugins/statpress-reloaded/statpress.php on line 1658

Deprecated: Function eregi() is deprecated in /home/senseles/public_html/rs/wp-content/plugins/statpress-reloaded/statpress.php on line 1662

Deprecated: Function eregi() is deprecated in /home/senseles/public_html/rs/wp-content/plugins/statpress-reloaded/statpress.php on line 1666

Deprecated: Function ereg() is deprecated in /home/senseles/public_html/rs/wp-content/plugins/statpress-reloaded/statpress.php on line 1362
Tag Archive for ‘url’ at Richard Santos

Tag Archive for 'url'

Passing URL variables with non-URL-friendly characters

When passing information via URL variables, we have to be careful that those variables do not contain non-URL-friendly characters. This includes spaces and non-alpha-numeric characters…
to be able to pass this characters, you have to first convert it to URL-safe hexadecimal escape characters…

And to do that, just use the URL encode function..

In classic Asp and Asp.Net:
Server.UrlEncode()

In classic PHP:
urlencode()

In classic Coldfusion:
URLEncodedFormat()