1){ // echo 'showing ' . ($imageListStart + 1) . ' through ' . $imageListStop . ' of ' . $imageCount; echo "\n\n" . '' . "\n\n"; } // Display image list if ($handle2 = opendir($root2folder . 'images/')) { $i = 1; $cnt = 0; while (false !== ($file = readdir($handle2))) { if ($file != "." && $file != ".." && $file !="Thumbs.db") { if(($cnt>=$imageListStart)&&($cnt<$imageListStop)){ echo '
' . "\n" . '' . $file . '' . "\n" . '
' . "\n" . '
' . "\n\n"; } $i++; $cnt++; } } closedir($handle2); } // Draw pagination if ($numberOfPages > 1){ // echo 'showing ' . ($imageListStart + 1) . ' through ' . $imageListStop . ' of ' . $imageCount; echo "\n\n" . '' . "\n\n"; } ?>