CREATE TABLE `free_classifieds` (
`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=58 ;
INSERT INTO `free_classifieds` VALUES (1, 'http://www.recycler.com', 'The Recycler Classifieds', 'http://www.recycler.comn Ads from LA to San Diego.n ');
INSERT INTO `free_classifieds` VALUES (2, 'http://www.buysellcommunity.com/', 'BuySellCommunity', 'http://www.buysellcommunity.com/n Offers a wide variety of areas including antiques, electronics, home and garden, and toys.n ');
INSERT INTO `free_classifieds` VALUES (3, 'http://www.freeclassifieds.com/', 'Strong Inc and HLK Enterprises', 'http://www.freeclassifieds.com/n Place free ads for a wide range of items, services and needs, arranged by category.n ');
INSERT INTO `free_classifieds` VALUES (4, 'http://www.direct-go.com/', 'Direct-Go.com', 'http://www.direct-go.com/n Free ads for international usersn ');
|