'; echo ''; // album map openen en uitlezen if ($handle = opendir($albumDir)) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { // table row erbij if ($rijenTeller == $aantalFotosOpEenRij) { echo ''; $rijenTeller = 0; } // album foto ophalen if ($handle2 = opendir($albumDir.'/'.$file.'/')) { while (false !== ($thumb = readdir($handle2))) { if ($file != "." && $thumb != "..") { if (substr($thumb, -4, -3) =="."){ $thumbernail = $thumb; } } } } closedir($handle2); // album laten zien echo ''; echo '
'.$file.$thumbPhoto.'
'; echo ''; // 1tje optellen bij de rijenteller $rijenTeller++; } } closedir($handle); } echo ''; echo ''; ?>