Help for this page

Select Code to Download


  1. or download this
    my $fh = $cgi->param('file');
    
    open FILE, ">whatever";
    print FILE while (<$fh>);
    
  2. or download this
    my $st  = $cgi->upload( $cgi->param('file'), ">whatever");