Hi there,
Could anyone give me some ideas on how to use php codes to run through the files in a particular folder (for example c:/test)
and then find for particular file, for example 'me1.txt' and display it on the page.
thanks
$dir = "/test";
$mydir = dir($dir);
while ($entry=$mydir->read()) { if ($entry="anyfile.txt") { //make anything } } $myDir->close();
//Christian