Help for this page

Select Code to Download


  1. or download this
    <html><body>
    <form enctype="multipart/form-data" action="path_to_script_that_reads_
    +non_uploaded_
    ...
    <input type="submit" value="Submit">      
    <input type="reset" value="Reset">
    </form></body></html>
    
  2. or download this
    use CGI;
    $CGI::POST_MAX = 4000;
    ...
    $fdata = CGI->new();
    $Test_Field = $fdata->param('UploadedFile');
    print"$Test_Field";exit;