CREATE TABLE `cam_communities` (
`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=11 ;
INSERT INTO `cam_communities` VALUES (1, 'http://www.jmeeting.com/', 'JMeeting.com', 'http://www.jmeeting.com/n Cross platforum video chat for all tastes. Use a webcam to videochat with old friends or make new ones.n ');
INSERT INTO `cam_communities` VALUES (2, 'http://www.citizenx.com/', 'CitizenX', 'http://www.citizenx.com/n Users control their own room, where they can broadcast their streaming video, chat, and edit their public weblog.n ');
INSERT INTO `cam_communities` VALUES (3, 'http://www.webcamnow.com/', 'WebcamNow', 'http://www.webcamnow.com/n Users can host their own webcams and chat with others.n ');
|