Help for this page

Select Code to Download


  1. or download this
    print "Load from local file:: <input type=file name=fileupload>";
    
  2. or download this
    if ($cgi->param("fileupload")) {
        my $fh=$cgi->param("fileupload");
    ...
        $buff.=$_ while sysread($fh,$_,4096);
        $cgi->param("body",$buff);
    }