Help for this page

Select Code to Download


  1. or download this
    my $fh = CGI::upload('upload');
    print $fh;
    
  2. or download this
            while (<$fh>) {
               print;
            }
    
  3. or download this
       my $fh = CGI::upload('upload');
       open(FILE, "$fh") or die "error: $!";
       my $source = <FILE>;
       close (FILE);