I'm selling a famous quote database with about 80k quotes.
Price: 10usd (paypal) or 500$np
`quotes` (
`id` int(10) unsigned NOT NULL auto_increment,
`author` varchar(255) NOT NULL default '',
`quote` mediumtext NOT NULL,
`userid` int(25) unsigned NOT NULL default '0',
`approved` int(1) unsigned NOT NULL default '0',
`votes` int(10) unsigned NOT NULL,
`rating` int(10) NOT NULL,
`average` float(3,2) NOT NULL,
`context` text,
`date` int(10) unsigned NOT NULL,
`views` int(10) unsigned NOT NULL,
`categoryid` int(10) unsigned default NULL,
`postid` int(10) unsigned default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM
demo : http://eseonline.net/forum/quotes/
Price: 10usd (paypal) or 500$np
`quotes` (
`id` int(10) unsigned NOT NULL auto_increment,
`author` varchar(255) NOT NULL default '',
`quote` mediumtext NOT NULL,
`userid` int(25) unsigned NOT NULL default '0',
`approved` int(1) unsigned NOT NULL default '0',
`votes` int(10) unsigned NOT NULL,
`rating` int(10) NOT NULL,
`average` float(3,2) NOT NULL,
`context` text,
`date` int(10) unsigned NOT NULL,
`views` int(10) unsigned NOT NULL,
`categoryid` int(10) unsigned default NULL,
`postid` int(10) unsigned default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM
demo : http://eseonline.net/forum/quotes/
Last edited:





