Help for this page

Select Code to Download


  1. or download this
    my @form_data_pairs = (
      'Encounter1847760942'           => $enc_id,
    ...
    push @form_data_pairs, ('checkbox2' => 1) if $some_other_flag;
    
    my $response = $browser->post($url, \@form_data_pairs, @ns_headers);
    
  2. or download this
    my %form_data = (
      'Encounter1847760942'           => $enc_id,
    ...
    $form_data{'checkbox2'} = 1 if $some_other_flag;
    
    my $response = $browser->post($url, [ %form_data ], @ns_headers);