$dir='../css/'; if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { if (is_dir($dir.$file) && $file != '.' && $file != '..') { echo( $file . "<br>" ); } } closedir($dh); } }