Help for this page

Select Code to Download


  1. or download this
     <input type="file" name="file">
    
  2. or download this
      ...
      Filename => $file,
      FH => $q->param('file'),
      ...
    
  3. or download this
      # uploading the file...
      $filename = $query->param('file');
    ...
      Filename => $filename,
      Path => $tmp_file,
      ...