Nevermind, got it:
PHP Code:<?php
if ($handle = opendir('/path/to/files')) {
echo "Directory handle: $handle\n";
echo "Files:\n";
while (false !== ($file = readdir($handle))) {
echo "$file\n";
}
closedir($handle);
}
?>
|
Results 1 to 18 of 18
Thread: All da Files 'n Stuff, manThreaded View
|
Click Here to Expand Forum to Full Width |