uid;
$instrument = $user->profile_instrument ? $user->profile_instrument : “piano”;
$icon_file = piano.png;
$inst_text = “Piano”;
$reading_music_page = ‘reading_music_’ . strtolower($instrument) . $dev;
echo ‘
Your Instrument
‘;
if(strcasecmp($instrument, ‘piano’) == 0){
$icon_file = ‘piano.png’;
$inst_text = “Piano”;
} else if(strcasecmp($instrument, ‘guitar’) == 0){
$icon_file = ‘red_guitar.png’;
$inst_text = ‘Guitar’;
} else if(strcasecmp($instrument, ‘bass’) == 0){
$icon_file = ‘blue_bass_2.png’;
$inst_text = ‘Bass’;
}
echo ‘‘ .
‘
‘ .
$inst_text . ‘
‘;
echo <<< DAVE
Choose Your Lesson
Music Matrix |
DAVE;