> // < the folders > $smalldir = "gallery/small"; $fulldir = "gallery/full"; $table = "table width=620 cellspacing=1 cellpadding=5 border=0 bgcolor=#FFFFFF"; $td = "td width=620 align=center bgcolor=#CCFF66"; $font = "font face=Verdana size=2"; $clickme = "Clica sull'immagine per ingrandire"; // < next, previous & back to overview text > $previous = " immagine precedente "; $next = " immagine successiva "; $back = " indietro "; if (empty($size)){ $size = "$smalldir"; } if ($handle = opendir("$size")){ while (false !== ($file = readdir($handle))){ if ($file != "." and $file != ".." and $file != "index.php" and $file != "index.html"){ $filelist[] = "$file"; } } closedir($handle); } sort($filelist); reset($filelist); $count = count($filelist); $count = ($count - "1"); //print "<$table><$td>"; if ($size == "$smalldir"){ while (list($arr) = each($filelist)){ print "  "; } } else { print ""; } //print "<$td>"; if ($size == "$smalldir"){ print "<$font>$clickme"; } if ($size == "$fulldir"){ if ($image == "0"){ $prevnr = "$count"; $nextnr = "1"; } elseif ($image == $count){ $prevnr = ($image - "1"); $nextnr = "0"; } else{ $prevnr = ($image - "1"); $nextnr = ($image + "1"); } print "<$font>$previous "; print "$back "; print "$next"; } //print ""; ?>