First lets start with your HTML:
I'm takin my time <input type="radio" name="tunes" value="first"><br>
Hawaiin beach baby <input type="radio" name="tunes" value="second"><br>
Downtown <input type="radio" name="tunes" value="third"><br>
this is fine - it'd be better for PHP if it was this though:
I'm takin my time <input type="radio" name="tunes" value="1"><br>
Hawaiin beach baby <input type="radio" name="tunes" value="2"><br>
Downtown <input type="radio" name="tunes" value="3"><br>
Now for your php - the problem was the variable is $_POST[tunes] that you'll want to check not $first, $second, $third. It's best, if you made the above html changes to do the following:
switch($_POST[tunes]){
case 0:
include(your html document here);
break;
case 1:
print "<embed src='im_taking_my_time.mp3' console='smallconsole' autostart='true' loop='1' width='128' height='128'>";
break;
case 2:
print "<embed src='hawaiin_beach_baby.mp3' console='smallconsole' autostart='true' loop='1' width='128' height='128'>";
break;
case 3:
print "<embed src='downtown.mp3' console='smallconsole' autostart='true' loop='1' width='128' height='128'>";
break;
default:
include(your html document here again);
break;
}
This reduces duplication and allows for easy expandability.
JMJimmy