CREATE TABLE `free_webresources` (
`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=74 ;
INSERT INTO `free_webresources` VALUES (1, 'http://www.wdvl.com/', 'Web Developer''s Virtual Library', 'http://www.wdvl.com/n News, tutorials, and reference material focusing on technical web development topics.n ');
INSERT INTO `free_webresources` VALUES (2, 'http://www.webreference.com/', 'WebReference.com', 'http://www.webreference.com/n News, tutorials, tools, and software downloads for web authoring.n ');
INSERT INTO `free_webresources` VALUES (3, 'http://www.devshed.com/', 'DevShed', 'http://www.devshed.com/n Includes HTML tools, free tutorials, development software, shareware and freeware downloads.n ');
|