Hey gang, thanks for you patience with me.
I think I'm starting to catch on to it a little better now.
This is what I got so far.
$artist = mysql_query("SELECT music_artist from music WHERE music_artist LIKE 'A%'");
$album = mysql_query("SELECT music_album from music WHERE music_artist LIKE 'A%'");
$song = mysql_query("SELECT music_song from music WHERE music_artist LIKE 'A%'");
$x = 1;
$y = 1;
$z = 1;
while ($myrow=mysql_fetch_array($artist))
{
while ($myrow=mysql_fetch_array($album))
{
while $myrow=mysql_fetch_array($song))
{
printf('<param name=menu1i1ixiyiz value = "%s">, $myrow["music_song"]);
printf('<param name=menu1i1ixiyizurl value = "$URL/%s/%s/%s">, $myrow["music_artist"], $myrow["music_album"], $myrow["music_song"]);
$z = $z +1;
}
printf('<param name=menu1i1ixiy value = "%s">, $myrow["music_album"]);
$y = $y +1;
}
printf('<param name=menu1i1ix value = "%s">, $myrow["music_artist"]);
$x = $x +1;
}
Selecting the artist, the album, and the song from the artis starting with "A".
I'm loading all the songs, the albums then the artist into the applet that I have.
First menu is artist, second album, thrid is song. That's what I need tha counter for...I need to incrament for each of the menus.
I don't know how it's going to look in the forum but it's a little easier to view it in my text editor.
The reason I'm asking so many question is a.)I'm new at this and b.) there is no one else here that knows how to so it either.
So all your help is great.
Thanks,
Jaymz