Help for this page

Select Code to Download


  1. or download this
    <FORM 
       ACTION="myupload.cgi" 
       METHOD="POST"
    ...
         <input type=file size=50 maxlength=100000 name="thefile">
    [...other input tags...]
    </FORM>
    
  2. or download this
    use CGI;
    
    ...
    while(<$filename>) {
            # do something with the data.
    }