Help for this page
use strict; use Env; use CGI qw(:standard); ... # Print file data here, size, title, etc. }
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;