CREATE TABLE `free_dogstuff` (
`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=13 ;
INSERT INTO `free_dogstuff` VALUES (1, 'http://www.sitstay.com/pedi/', 'Pedigree Generator', 'http://www.sitstay.com/pedi/n SitStay offers this free pedigree generator. By filling in a form it will automatically generate an HTML Pedigree for your web site.n ');
INSERT INTO `free_dogstuff` VALUES (2, 'http://www.chazhound.com/', 'Chazhound''s Free Dog Site', 'http://www.chazhound.com/n 100''s of free games and pet games to download. Dog care information. "Big Dog" Award Contest. Best dog sites and pet care resources.n ');
INSERT INTO `free_dogstuff` VALUES (3, 'http://www.talktothevet.com/FREE_PET_STUFF/index.html', 'Abundant Free Pet Stuff', 'http://www.talktothevet.com/FREE_PET_STUFF/index.htmln A resource exclusively dedicated to pet freebies. Frequently updated contests, free products, games, coupons, supplies and computer wallpapers related to dogs, cats, birds and animals.n ');
|