Ive search and read for hours but no luck
All i want to be able to do is list the directories (folders) within a certain dir(folder)
Ive tried lots of differnt code but nothing works
I found lots of code that will display both files and folders but i want just the folders.
Example of code that work but displays both
<?php
if ($handle = opendir('galleries/')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "$file\n";
}
}
closedir($handle);
}
?>
<?php
Thanks for any help