Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
        /([^&]+)\&/;
        print "$_ - $1\n";
    }
    
  2. or download this
    use strict;
    use URI;
    ...
    my %hash = $uri->query_form();
    
    print $hash{KEY}, "\n";