Print all files under a directory
|
<?php $dirname = "."; $dh = opendir($dirname) or die("couldn't open directory");
while (!(($file = readdir($dh)) === false ) ) { if (is_dir("$dirname/$file")) { echo "(D) "; } echo $file."<br/>"; } closedir($dh); ?>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
|