Help for this page

Select Code to Download


  1. or download this
    $uri->query_form(foo => 1, foo => 2);
    $uri->query_form(foo => [1, 2]);
    $uri->query_form([ foo => 1, foo => 2 ]);
    $uri->query_form([ foo => [1, 2] ]);
    $uri->query_form({ foo => [1, 2] });
    
  2. or download this
    $ua->request(POST 'http://somewhere/foo', [
       editions    => [qw( D A H )],
       other_input => 'its value',
    ]);