You could use this code:
Change $base_dir to be the root of where you want to start
$base_dir = "/www/yourfolder";
chdir($base_folder);
$handle=opendir(".");
while ($file = readdir($handle)) {
if (($file != ".") && ($file != "..")){
if (is_dir($file)) $dirlist[] = $file;
}
}
closedir($handle);
while (list ($key, $dir) = each($dirlist)) {
print $dir ."<br>";
}