#MyLinks V. 1.0 #Requires MySQL(www.mysql.com) #Edit the header.php file w/ the approriate values at the top #This is a dump for your convience for user w/ PHPMyAdmin #This program is freeware but you must keep my name on it. #You may make changes to this but you must keep my name on it. #You may redistribute this but you must keep my name on it. CREATE TABLE links ( name text, cat int(11) default NULL, url text, hits int(11) default NULL, id mediumint(9) NOT NULL auto_increment, des text, PRIMARY KEY (id)) TYPE=MyISAM; CREATE TABLE cats ( id mediumint(9) NOT NULL auto_increment, name text NOT NULL, PRIMARY KEY (id) ) TYPE=MyISAM;