Help for this page

Select Code to Download


  1. or download this
    use HTTP::Request::Common qw( POST );
    
    ...
      Content_Type => 'multipart/form-data',
           Content => [ 'file' => [ $ballot_file ]]
    );
    
  2. or download this
    use HTTP::Request::Common qw( POST );
    
    ...
            name   => 'datafile',
        ],
    );
    
  3. or download this
      POST 'http://www.perl.org/survey.cgi',
           Content_Type => 'form-data',
    ...
                             born   => '1964',
                             init   => ["$ENV{HOME}/.profile"],
                           ]