Added by anonymous on 2008-07-31 15:03:16 Download/View
- <html>
- <body>
- <?php
- foreach ($globIt as $filename) {
- $globFiles[] = $filename;
- }
- $dirIt = new DirectoryIterator('./');
- foreach($dirIt as $b) {
- if($b->isDot()) continue; //don't include the . and .. links
- $diriFiles[] = $b;
- }
- ?>
- <table>
- </table>
- </body>
- </html>