<< back | print

With that piece of code you can list your files/folders of your webspace:

<?php
$handle=opendir('.');
while ($file = readdir ($handle))
{
if ($file != "." && $file != "..")
{
echo "$file\n, \n";
}
}
closedir($handle);
?>