Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== read files in a directory ====== <code php> <?php $dh = opendir("."); while( $file = readdir($dh) ){ if( $file == "." || $file == ".." ) continue; echo "$file\n"; } closedir($dh); ?> </code> docs/programming/php/read_files_in_a_directory.txt Last modified: 2009/02/09 22:17by billh