CREATE TABLE `free_contests` (
`ID` int(10) unsigned NOT NULL auto_increment,
`URL` text NOT NULL,
`Name` text NOT NULL,
`Description` text NOT NULL,
PRIMARY KEY (`ID`)
) TYPE=MyISAM AUTO_INCREMENT=36 ;
INSERT INTO `free_contests` VALUES (1, 'http://pch.com/', 'Publishers Clearing House', 'http://pch.com/n Online sweepstakes and shopping site. Cookies required to use the site.n ');
INSERT INTO `free_contests` VALUES (2, 'http://www.50bucks.ca/', '50Bucks.ca', 'http://www.50bucks.ca/n Daily entry sweepstakes awarding a $50 prize every Friday. For Canadians only.n ');
INSERT INTO `free_contests` VALUES (3, 'http://www.winsportinggoods.com/', 'Win Sporting Goods', 'http://www.winsportinggoods.com/n Daily drawings offering prizes, certificates and cash from leading sports retailers.n ');
INSERT INTO `free_contests` VALUES (4, 'http://www.winamilliondollars.com/', 'Win A Million Dollars', 'http://www.winamilliondollars.com/n The largest free sweepstakes on the internet. Free contest to win a million dollars cash.n ');
|