in reply to encoding URLs in URLs
If one seeks to pass a full URL to a web app via a parameter in url, what characters must be escaped to ensure the param URL makes it across intact?It's called uri-encoding and is used in CGI. You can use the CGI module or URI::Escape to encode query string. To learn how CGI works read Ovids tutorial.
|
|---|