E' possibile vedere le nuove foto, direttamente dalla nostra pagina facebook: clicca qui
$handle=opendir('foto');
// initialize variables
$albumfoto=array();
$count=0;
// read directory into pics array
while (($file = readdir($handle))!==false) {
$dirfile="foto/$file";
if (is_dir($dirfile) && $dirfile!='.' && $dirfile!='..'){
// skip non-thumbnail files
$albumfoto[$count] = $file;
$count++;
// don't forget to close the filter conditions here!
}
}
closedir($handle);
rsort($albumfoto);
reset($albumfoto);
$a=0;
print ("
");
echo "\n";
for ($i=0;$i<=sizeof($albumfoto)-1;$i++) {
$primafoto="foto/$albumfoto[$i]/tn_01.jpg";
//print ("$primafoto");
if (file_exists($primafoto)) {
$a++;
if (($a)==1) {
print ("");
}
$href="fotoalbum.php?album=$albumfoto[$i]";
$titoloalbum=substr($albumfoto[$i],+3);
$titoloalbum=str_replace("- ", "
", $titoloalbum);
//descrizione e miniatura
print("
| ");
echo "\n";
//miniatura
// print(" | "); style=\"border-left-style: solid; border-left-width: 1; border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1\"
if (($a)==5) {
print ("
");
$a=0;
}
echo "\n";
}
}
print ("
");
echo "\n";
?>