<?php $thelist = array(); $dir = './upload/ftp/'; if ($handle = opendir($dir)) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != ".." && $file !="index.php" && $file !=".ftpquota") { $file = $file; $thelist[] = array('file' => $file, 'filemtime' => filemtime($file), 'filesize' => filesize($file)); } } closedir($handle); } ?> <?php for($i = 0; $i < count($thelist); $i++) { ?><a href="sitename/<?=$thelist[$i]['file']?>"><?=$thelist[$i]['file']?></a><?php } ?>