Yeah i could...but actually there are 3 different modules that say the exact same thing...implying there is some magical way of pointing MySQL to the text file and having it read the instructions and create tables...
Each of the 3 files contains 'table creation' lingo that I could probably enter by hand somehow...somewhere in PhpMyAdmin...lol...
OK...here is the text from one of them...again they are all similar in command structure....
CREATE TABLE nuke_internet_radio_settings (
modulename varchar(30) NOT NULL default '',
auto_start tinyint(1) NOT NULL default '0',
picture tinyint(1) NOT NULL default '0',
picture_dir varchar(50) NOT NULL default '',
defpicture tinyint(1) NOT NULL default '0',
nopicture_name varchar(50) NOT NULL default ''
) TYPE=MyISAM;
INSERT INTO nuke_internet_radio_settings VALUES ('Internet_Radio', 0, 1, 'images/internet_radio/', 1, 'radio_on.gif');
CREATE TABLE nuke_internet_radio (
radio_id int(10) unsigned NOT NULL auto_increment,
radio_name varchar(20) NOT NULL default '',
radio_stream varchar(75) NOT NULL default '',
radio_url varchar(50) NOT NULL default '',
radio_picture varchar(50) NOT NULL default '',
radio_language varchar(30) NOT NULL default '',
PRIMARY KEY (radio_id)
) TYPE=MyISAM;
INSERT INTO nuke_internet_radio VALUES ('', 'Yorin FM', 'http://media.rtl.nl/yorinfm/on_air/yorin.asx', 'http://www.yorin.nl', 'yorin.gif', 'dutch');
INSERT INTO nuke_internet_radio VALUES ('', 'Radio 3FM', 'http://www.omroep.nl/radio3/live20.asx', 'http://www.omroep.nl/radio3/', '', 'dutch');
INSERT INTO nuke_internet_radio VALUES ('', 'Sky radio', 'http://www.skyradio.nl/player/skyradio.asx', 'http://www.skyradio.nl', '', 'dutch');
INSERT INTO nuke_internet_radio VALUES ('', 'Hotradio', 'http://www.hotradio.nl/sound/stream/livestream.asx', 'http://www.hotradio.nl', '', 'dutch');
INSERT INTO nuke_internet_radio VALUES ('', 'Noordzee FM', 'mms://hollywood.win2k.vuurwerk.nl/noordzee', 'http://www.noordzeefm.nl', '', 'dutch');
INSERT INTO nuke_internet_radio VALUES ('', 'Radio NRG', 'http://www.radionrg.com/listenlive.asx', 'http://www.radionrg.com', '', '');
INSERT INTO nuke_internet_radio VALUES ('', 'Baja radio', 'http://www.bajaradio.com/vuurwerk.asx', 'http://www.bajaradio.com', '', 'dutch');
INSERT INTO nuke_internet_radio VALUES ('', 'Capital FM', 'http://www.radio-now.co.uk/l/capitalfmlo.asx', 'http://www.capitalfm.com', 'capital.gif', 'english');
INSERT INTO nuke_internet_radio VALUES ('', 'Virgin Radio', 'http://www.smgradio.com/core/audio/wmp/live.asx?service=vr', 'http://www.virginradio.co.uk', '', 'english');
INSERT INTO nuke_internet_radio VALUES ('', 'Flash FM', 'http://www.flashfm.com/live/buildasx.asp?service=flashfmuk22', 'http://www.flashfm.com/', '', 'english');
INSERT INTO nuke_internet_radio VALUES ('', 'BBC Radio 1', 'http://www.bbc.co.uk/radio1/realaudio/media/r1live.rpm', 'http://www.bbc.co.uk/radio1/', '', 'english');
Peace,
Wolf
http://www.webs4christ.com