Author : Collection
Price : $7
Rights : None
Category : mySQL database
Share to your friend
Get my collection of more than 39,000 inspirational quotes. You can used to build a new site or send daily inspirational quotes to your subscriber.
This is a great way to get more traffic to your site.
Or use it to create new site and allow your visitor to send the quotes to their friends and love ones to gain more traffic to your site.
Here is the database structure:
--
-- Table structure for table `quotes`
--
CREATE TABLE IF NOT EXISTS `quotes` (
`id` bigint(5) NOT NULL auto_increment,
`quote` text NOT NULL,
`author` varchar(128) NOT NULL default '',
`authordata` text NOT NULL,
`comments` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=39263 ;
Sample data entries
INSERT INTO `quotes` (`id`, `quote`, `author`, `authordata`, `comments`) VALUES(1, 'Ambition is a poor excuse for not having sense enough to be lazy. more Inspirational quotes', 'Edgar Bergen, (Charlie McCarthy)', 'US comedian & ventriloquist (1903 - 1978)', 1);
INSERT INTO `quotes` (`id`, `quote`, `author`, `authordata`, `comments`) VALUES(2, 'What can you say about a society that says that God is dead and Elvis is alive? more Inspirational quotes', 'Irv Kupcinet', '', 2);
INSERT INTO `quotes` (`id`, `quote`, `author`, `authordata`, `comments`) VALUES(3, 'Never explain--your friends do not need it and your enemies will not believe you anyway. more Inspirational quotes', 'Elbert Hubbard', 'US author (1856 - 1915)', 0);
INSERT INTO `quotes` (`id`, `quote`, `author`, `authordata`, `comments`) VALUES(4, 'First, I do not sit down at my desk to put into verse something that is already clear in my mind. If it were clear in my mind, I should have no incentive or need to write about it. We do not write in order to be understood; we write in order to understand. more Inspirational quotes', 'Robert Cecil Day Lewis', '', 0);
INSERT INTO `quotes` (`id`, `quote`, `author`, `authordata`, `comments`) VALUES(5, 'Because women live creatively, they rarely experience the need to depict or write about that which to them is a primary experience and which men know only at a second remove. Women create naturally, men create artificially. more Inspirational quotes', 'Ashley Montagu', '', 1);
|