CREATE TABLE `stations` (
`id` int(11) NOT NULL auto_increment,
`location` varchar(100) NOT NULL default '',
`title` text NOT NULL,
`style` varchar(30) NOT NULL default '',
`url` text NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `stations` VALUES (1, 'American Samoa', 'KKHJ FM', ' Hot Adult Contemporary', 'http://khjradio.dyndns.org:8200/');
INSERT INTO `stations` VALUES (2, 'American Samoa', 'KNWJ FM (FM104)', 'Christian', 'http://www.christiannetcast.com/listen/dynamicasx.asp?station=knwj-fm');
INSERT INTO `stations` VALUES (3, 'American Samoa', 'KSBS', 'Variety', 'http://209.79.146.197:8000');
|