Help for this page

Select Code to Download


  1. or download this
    $fh = $query->upload('FILE');
         while (<$fh>) 
    {
               $filecontents .= $_;
         }
    
  2. or download this
    my $file = $query->param('FILE');
    
    ...
          $filecontents .= $buffer;
       }
    undef $bytesread; undef $buffer;