Help for this page

Select Code to Download


  1. or download this
    use URI;
    
    ...
    
    print($uri->as_string(), "\n");
    # http://www.domain.com/?editions=D&editions=A&editions=H
    
  2. or download this
    use LWP;
    use HTTP::Request::Common;
    ...
    # Content-Type: application/x-www-form-urlencoded
    #
    # editions=D&editions=A&editions=H
    
  3. or download this
    >perl -MURI -le "print $URI::VERSION"
    1.19
    
    >perl -MLWP -le "print $LWP::VERSION"
    5.64