LOL well I guess you could say I’m a half assed coder. I examine others codes and take parts and put them into mine. I'm not good with PHP, I’m still learning so there is still a lot more I need to learn. Thakns for you help, i'm still not sure how to fit that into the code but i'll try
Thanks
EDIT:
code:
switch ($song_gender)
{
case 'country_and_western':
die();
case 'techno':
// do something useful here
default:
// unrecognised genre
}
Some questions:
What does die() do? Does it end the code?
Under default: will that code be used every time the case is called?