CREATE TABLE `fam_quotes` ( `id` int(10) unsigned NOT NULL auto_increment, `author` varchar(255) NOT NULL default '', `quote` mediumtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM; INSERT INTO `fam_quotes` VALUES (1, 'Lee Iacocca', 'Motivation is everything. You can do the work of two people, but you can't be two people. Instead, you have to inspire the next guy down the line and get him to inspire his people.'); INSERT INTO `fam_quotes` VALUES (2, 'Lee Iacocca', 'In a completely rational society, the best of us would be teachers and the rest of us would have to settle for something else.'); INSERT INTO `fam_quotes` VALUES (3, 'Lee Iacocca', 'Do you want me to tell you something really subversive Love is everything it's cracked up to be. That's why people are so cynical about it. . . . It really is worth fighting for, being brave for, risking everything for. And the trouble is, if you don't risk anything, you risk even more.');