Help for this page

Select Code to Download


  1. or download this
       my $ua  = new LWP::UserAgent;
       my $res = $ua->request(POST 'http://myserver.com/Parse.pl',
                              Content_Type => 'form-data',
                              Content      => [file => ['Test.ini']]);
    
  2. or download this
       my $query    = CGI->new();
       my $file     = $query->param('file');
    ...
           # do something with data
       }
    
  3. or download this
       my $ua  = new LWP::UserAgent;
       my $res = $ua->request(POST 'http://myserver.com/Parse.pl',
                              Content => $file);