#incoming url = script.cgi?foo=bar&baz=qux my $c = CGI->new(); print $c->param('foo'); #prints bar print $c->param('baz'); #prints qux