Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Re: Re: encoding URLs in URLs

by Roy Johnson (Monsignor)
on Apr 19, 2004 at 21:29 UTC ( [id://346471]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: encoding URLs in URLs
in thread encoding URLs in URLs

I suspect that URI::Escape is the right choice. Here's a bit of code to compare them:
my $url = 'http://www.myothersite.com/myotherwebapp2/foo.asp?param=1&p +aram=3'; use CGI; print "Using CGI Escape:\n"; my $esc_url = CGI::escapeHTML $url; print "$url\nbecomes\n$esc_url\n\n"; use URI::Escape; print "Using URI Escape:\n"; $esc_url = uri_escape($url); print "$url\nbecomes\n$esc_url\n";
Output is:
Using CGI Escape: http://www.myothersite.com/myotherwebapp2/foo.asp?param=1&param=3 becomes http://www.myothersite.com/myotherwebapp2/foo.asp?param=1&param=3 Using URI Escape: http://www.myothersite.com/myotherwebapp2/foo.asp?param=1&param=3 becomes http%3A%2F%2Fwww.myothersite.com%2Fmyotherwebapp2%2Ffoo.asp%3Fparam%3D +1%26param%3D3

The PerlMonk tr/// Advocate

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://346471]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-24 20:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found