Help for this page

Select Code to Download


  1. or download this
    # to test form upload using CGI.pm - works fine!
    use strict;
    ...
    print <$fh>;
    print "</body></html>\n";
    exit(0);
    
  2. or download this
    # to test form upload
    use strict;
    ...
    print $cgi->param("file1");
    print "</body></html>\n";
    exit(0);
    
  3. or download this
    <html>
    <head>
    ...
    </form>
    </body>
    </html>