Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use CGI;
    ...
            -size => 50,
            -maxlength=> 80);
    print $query->endform;
    
  2. or download this
    #!/usr/bin/perl
    use CGI;
    ...
    while(<$file>) {
        print $_; # the contents of the upload file
    }