CREATE TABLE `free_graphics` (
`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=110 ;
INSERT INTO `free_graphics` VALUES (1, 'http://www.webpagedesign.com.au/', 'All for Webmasters', 'http://www.webpagedesign.com.au/n Webmaster resources including original graphics free backgrounds, templates, interfaces and web page sets. Also offering banner design.n ');
INSERT INTO `free_graphics` VALUES (2, 'http://www.graphicsring.com/', 'The Graphics Ring', 'http://www.graphicsring.com/n Collected works of many graphics oriented sites on the net. Holiday graphics section, a newsletter, online postcards, contests, tips and tricks, fonts and other information. Find everything needed to create stunning webpages and graphics.n ');
INSERT INTO `free_graphics` VALUES (3, 'http://www.guistuff.com/', 'GUIStuff', 'http://www.guistuff.com/n Variety of high-quality web site designs, templates, interfaces, and tutorials.n ');
|