// CONFIGURATION $cols = 5; // columns number $table_bg_color = "#FFCC66"; // table background color $table_border = "0"; // table border size $table_width = "100%"; // table width // DO NOT EDIT BELOW $i =1; $files = array (); $myDirectory = opendir("PHPphotoAlbum/imgs/thumbs"); echo "
"; while ($file = readdir($myDirectory)) { if (($file != ".") && ($file != "..") && ($file != "index.php") && !(is_dir("PHPphotoAlbum/imgs/$file")) ) { $files[] = $file; if (is_int($i / $cols)) { list($width, $height) = getimagesize("PHPphotoAlbum/imgs/$file"); echo "
"; ?>
echo "
"; echo "
"; } else { list($width, $height, $type, $attr) = getimagesize("PHPphotoAlbum/imgs/$file"); echo "
"; ?>
echo "
"; echo "
"; } $i++; } } echo "
"; closedir($myDirectory); ?>