Help for this page

Select Code to Download


  1. or download this
    When the form is processed, you can retrieve an IO::Handle compatibile
    + handle for a file upload field like this:
    
    ...
      }
    In a list context, upload() will return an array of filehandles. This 
    +makes it possible to process forms that use the same name for multipl
    +e upload fields.
    
  2. or download this
    use CGI qw(:standard);
    
  3. or download this
    $lightweight_fh  = upload('field_name');
    
    ...
         print OUTFILE $buffer;
      }
    }
    
  4. or download this
    use IO::Handle;
    
  5. or download this
    Undefined subroutine Fh::handle