Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Env;
    use CGI qw(:standard);
    ...
    
            # Print file data here, size, title, etc.
    }
    
  2. or download this
    CREATE TABLE sample_uploads (
      sample_id tinyint(4) NOT NULL default '0',
      sample_submit_date datetime NOT NULL default '0000-00-00 00:00:00',
    ...
      sample_filename text NOT NULL,
      PRIMARY KEY (sample_id)
    ) TYPE=MyISAM;