01-15-2008, 04:37 PM
|
#1 (permalink)
|
|
The Acquainted
Join Date: Jan 2008
Posts: 119
Thanks: 21
|
List Directories, not files
Hello all,
Great website here. I hope I can share and help here, as well as get help as I learn...
I am trying to list just the directories under a certain folder. I don't want the files, just directories. Currently I have this:
PHP Code:
<?php
if ($handle = opendir('../categories/')) {
/* loop through directory. */
while (false !== ($dir = readdir($handle))) {
echo '<option value='.$dir.'>'.$dir.'</option>';
}
closedir($handle);
}
?>
Right now it shows a drop down select option with this at the beginning:
PHP Code:
.
..
Directory1
Directory2
Any ideas?
Thanks!
|
|
|
|