CREATE TABLE `punk_artphotos` (
`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=49 ;
INSERT INTO `punk_artphotos` VALUES (1, 'http://www.phillipkerman.com/', 'Concert Photographs', 'http://www.phillipkerman.com/n Live photos of Bad Brains (circa 1980), Discharge, Dead Kennedys and The Cramps.n ');
INSERT INTO `punk_artphotos` VALUES (2, 'http://www.scallen.com/', 'Shawn Scallen', 'http://www.scallen.com/n Shooting punks for fifteen years and counting.n ');
INSERT INTO `punk_artphotos` VALUES (3, 'http://www.whatawaytodie.com/', 'Live Rock and Roll Photos by Justina Davies', 'http://www.whatawaytodie.com/n Featuring punk bands from the past like Bad Brains and Reagan Youth as well newer bands like Bis and The (International) Noise Conspiracy.n ');
|