FOTOS
include_once('incFileList.php');
$Folder=$_REQUEST['folder'];
if (strlen($Folder)<1):
$Folder='fotos';
endif;
$DirList=getFileList($Folder);
sort($DirList);
foreach($DirList as $file)
{
if ($file['type']=='dir'):
$Parts=explode('/',$file['name']);
$LastFolder=$Parts[count($Parts)-2];
echo "\t\t\t\t\t\t\t".''."\n";
else:
echo "\t\t\t\t\t\t\t".''."\n";
endif;
}
?>