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