CREATE TABLE `free_cupons` (
`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=7 ;
INSERT INTO `free_cupons` VALUES (1, 'http://www.cents-off.com/', 'Coupon Information Corporation', 'http://www.cents-off.com/n Not-for-profit association dedicated to fighting fraud and misredemption.n ');
INSERT INTO `free_cupons` VALUES (2, 'http://www.wow-coupons.com', 'Wow Coupons', 'http://www.wow-coupons.comn Features printable coupons for grocery, gift and home products.n ');
INSERT INTO `free_cupons` VALUES (3, 'http://www.couponstar.com', 'Couponstar', 'http://www.couponstar.comn Provides products and services specifically to support the creation, distribution, tracking and reporting of consumer-printed coupons.n ');
|