Change query to be this:
$query="SELECT title,artist,genreID,url FROM tunes";
Then try this while loop...
while ($myrow = mysql_fetch_row($result))
{
echo "$myrow[0]<br>$myrow[1]<br>$myrow[2]<br>$myrow[3]<br><p>"";
}
I haven't tested this, but it should work.