CREATE TABLE `quotes` ( `id` int(5) NOT NULL auto_increment, `quote` text NOT NULL, `author` varchar(128) NOT NULL default '', `authordata` text NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=17395 ; INSERT INTO `quotes` VALUES (1, 'Ambition is a poor excuse for not having sense enough to be lazy.', 'Edgar Bergen, (Charlie McCarthy)', 'US comedian & ventriloquist (1903 - 1978)'); INSERT INTO `quotes` VALUES (2, 'What can you say about a society that says that God is dead and Elvis is alive?', 'Irv Kupcinet', ''); INSERT INTO `quotes` VALUES (3, 'Never explain--your friends do not need it and your enemies will not believe you anyway.', 'Elbert Hubbard', 'US author (1856 - 1915)');