$dir = opendir('.');
while (($file = readdir($dir)) !==false)
{
if ($file != '.' && $file != '..' &&
is_dir("$file"))
{
echo "$file <br>";
}
}
This is what i have so far, but when I try to get the dirs from c:\testdir I get errors...how do I get this to work ?
Thanx