Help for this page

Select Code to Download


  1. or download this
    <form action="https://<address>/cgi-bin/upload.pl" method="post" encty
    +pe="multipart/form-data"> 
    
    ...
    <input type="File" name="FILE10" size="40"> 
    
    <input type="Submit" value=" Upload " >  <input type="reset" value=" R
    +eset ">
    
  2. or download this
    my $url = 'https://<address>/cgi-bin/upload.pl';
    my $response = $browser->post($url,Content_Type => 
    "multipart/form-data" Content => [file => ['data.txt']]);
    print ($response->status_line);