CREATE TABLE `free_rewards` (
`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=48;
INSERT INTO `free_rewards` VALUES (1, 'http://www.milesource.com', 'Mile Source', 'http://www.milesource.comn Earn points for visiting web sites, reading e-mails, and taking surveys. Points are then exchanged for merchandise.n ');
INSERT INTO `free_rewards` VALUES (2, 'http://www.freedvd4me.com/', 'FreeDVD4Me', 'http://www.freedvd4me.com/n Allows users to earn free DVDs by signing up for advertiser offers.n ');
INSERT INTO `free_rewards` VALUES (3, 'http://www.inboxdollars.com/', 'InboxDollars.com', 'http://www.inboxdollars.com/n Get paid for receiving and responding to e-mail advertisements. Plus, check out Web sites and signup for offers to receive points that can be exchanged for cash rewards.n ');
|