in reply to Perl/Cgi : How to Create Url with variables and values (get method) from Scrach?

You must encode the values.

See the source code of CGI::Util

in escape function :

$toencode =~ s/([^a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg +;
  • Comment on Re: Perl/Cgi : How to Create Url with variables and values (get method) from Scrach?
  • Download Code

Replies are listed 'Best First'.
Re^2: Perl/Cgi : How to Create Url with variables and values (get method) from Scrach?
by EchoAngel (Pilgrim) on Jan 27, 2005 at 23:46 UTC
    thanks! this helps!