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.com\n Features printable coupons for grocery, gift and home products.\n ');
INSERT INTO `free_cupons` VALUES (3, 'http://www.couponstar.com', 'Couponstar', 'http://www.couponstar.com\n Provides products and services specifically to support the creation, distribution, tracking and reporting of consumer-printed coupons.\n ');
INSERT INTO `free_cupons` VALUES (4, 'http://clipandsave.tripod.com', 'Clip and Save', 'http://clipandsave.tripod.com\n Offers tips and tricks, resources and trading. Includes a wish list.\n ');
INSERT INTO `free_cupons` VALUES (5, 'http://www.couponmonth.com/', 'Coupon Council', 'http://www.couponmonth.com/\n History, tips, and lesson plans on the use of coupons. Offers shopping worksheets.\n\n\n  ');
INSERT INTO `free_cupons` VALUES (6, 'http://www.grocerycouponguide.com', 'Grocery Coupon Guide', 'http://www.grocerycouponguide.com\n Articles include history, consumer information on fraud, and grocery coupon organizer.\n\n\n  ');

