I need to set up one database with 2 tables
heres what I go so far
For the first table I want to add more like City, State, Country, Zip Code, Genre 1, Genre 2, Genre 3 but I want them to have drop down menus and I dont know how to do that with mysql. Im really confused can someone shed some light on me how to do this. Also with the mp3 table ready will I be able to extract audio files from the table and use them in a flash player?
Any help will be useful thanks
heres what I go so far
Code:
CREATE TABLE bands (
uband varchar(20) NOT NULL default '',
umembers longtext NOT NULL,
ubio longtext NOT NULL,
unews longtext NOT NULL,
time varchar(50) NOT NULL default '',
id int(11) NOT NULL auto_increment,
PRIMARY KEY (id)
) TYPE=MyISAM;
Code:
CREATE TABLE mpThree (
id INT NOT NULL AUTO_INCREMENT,
name VARCHAR(30) NOT NULL,
type VARCHAR(30) NOT NULL,
size INT NOT NULL,
content MEDIUMBLOB NOT NULL,
PRIMARY KEY(id)
);
For the first table I want to add more like City, State, Country, Zip Code, Genre 1, Genre 2, Genre 3 but I want them to have drop down menus and I dont know how to do that with mysql. Im really confused can someone shed some light on me how to do this. Also with the mp3 table ready will I be able to extract audio files from the table and use them in a flash player?
Any help will be useful thanks








