You've got the absolute and relative paths reversed. The absolute paths should start with "/" (in Linux), and the relative paths CANNOT start with "/" (in Linux). So if you want to use absolute paths, it would be
unlink("/www/public_html/etc");
if you want to use relative
unlink("album/etc");
Diego