We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

fris on 02/23/08


Tagged

index files directory


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

MoFu


print out files in a directory


Published in: PHP 


  1. <?
  2. $dir = @opendir(".");
  3. while (($file = readdir($dir)) !== false) {
  4. print("$file<br>");
  5. }
  6. closedir($dir);
  7. ?>

Report this snippet 

You need to login to post a comment.