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