Topic: List files in folder

Put this wherever you want :

i've used this div to put it near the JPG GIF and MAXsize labels
This will list all the files in a specific folder

Eventually you can make it enumerate only jpg , ecc...

<div id="limite">Images Hosted : 

<?
$d = opendir("images");
$count = 0;
while(($f = readdir($d)) !== false)
  
     ++$count;
closedir($d);
print "$count";
?> 
</div>

Thumbs up