in reply to Re: Best way to generate URLs in CGI script?
in thread Best way to generate URLs in CGI script?
my $target = CGI->new( 'graph' ); $target->param( -a => 'b', -c => 'd' ); $target->url; # 'http://localhost/cgi/originalPath' $target->query_string; # 'keywords=graph' $target->param; # 'keywords'
So this didn't work...
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Best way to generate URLs in CGI script?
by synapse0 (Pilgrim) on Jul 27, 2001 at 06:33 UTC | |
by bikeNomad (Priest) on Jul 27, 2001 at 06:40 UTC | |
by merlyn (Sage) on Jul 27, 2001 at 22:06 UTC | |
by bikeNomad (Priest) on Jul 27, 2001 at 22:17 UTC | |
by merlyn (Sage) on Jul 28, 2001 at 03:26 UTC |