[PHP]<?php
############### templates directory #############
$templates_path = "templates/";
$d = dir($templates_path);
while (false !== ($entry = $d->read())) {
if ($entry != "." and $entry != ".." and is_dir($templates_path.$entry)) {
$templates[] = $entry;
}
}
$d->close();
print_r($templates);
################################################## #
?>[/PHP]