CREATE TABLE `cam_animals` (
`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=80 ;
INSERT INTO `cam_animals` VALUES (1, 'http://www.africam.com/', 'Africam', 'http://www.africam.com/n Live feeds of the African Bush, Bahamas, and polar bears.n ');
INSERT INTO `cam_animals` VALUES (2, 'http://dsc.discovery.com/cams/cams.html', 'Discovery.com Cams', 'http://dsc.discovery.com/cams/cams.htmln Live webcams of a variety of animals.n ');
INSERT INTO `cam_animals` VALUES (3, 'http://ywl.com/webcam.htm', 'LlamaCam at Yellow Wood Llamas Inc', 'http://ywl.com/webcam.htmn Breeder of fine show quality llamas with silky fiber and features a live llama web cam.n ');
|