Help for this page

Select Code to Download


  1. or download this
    use URI;
    
    my $uri = URI->new('http://localhost/foo.cgi?foo=bar&foo=baz');
    my @result = $uri->query_form;
    print join(":", @result), "\n";
    
  2. or download this
    foo:bar:foo:baz