Here are the tables in my database.
music (
id int(11) NOT NULL auto_increment,
catid int(11) default NULL,
song_title varchar(255) default NULL,
artist varchar(75) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
Category
category (
catid int(11) NOT NULL auto_increment,
name varchar(30) default NULL,
PRIMARY KEY (`catid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
category VALUES(1, 'Bridal Songs');
category VALUES(2, 'Party Songs');
Now, Here is my question:
How would I display information based on the category that the songs are in.
Thanks once again for the help.