<?
# browse_album.php
#
include ("tunez.inc.php");
displayHeader("Browse Albums");
displayNavBar();
checkForVoting();
nowPlaying();
select count(*) as aantal, artist, album from songs WHERE album > '' GROUP BY album ORDER BY aantal;
displayFooter();
?>