CREATE TABLE story ( `id` int(4) NOT NULL auto_increment, `name` text NOT NULL, `story` text NOT NULL, `date` varchar(10) NOT NULL default '', PRIMARY KEY (`id`) ) TYPE=MyISAM; CREATE TABLE filter ( id tinyint(4) NOT NULL auto_increment, swearword tinytext NOT NULL, filter tinytext NOT NULL, PRIMARY KEY (id) )