bo0 Posted June 20, 2006 Share Posted June 20, 2006 I have a script (below) that displays images found in a certain folder.I need to know how I would make the script display say 10 images per page.Any ideas?[code]<?phpfunction filelist ($startdir="./", $searchSubdirs=1, $directoriesonly=0, $maxlevel="all", $level=1) { //list the directory/file names that you want to ignore $ignoredDirectory[] = "."; $ignoredDirectory[] = ".."; $ignoredDirectory[] = "_vti_cnf"; global $directorylist; //initialize global array if (is_dir($startdir)) { if ($dh = opendir($startdir)) { while (($file = readdir($dh)) !== false) { if (!(array_search($file,$ignoredDirectory) > -1)) { if (filetype($startdir."/".$file) == "dir") { //build your directory array however you choose; //add other file details that you want. $directorylist[$startdir . $file]['level'] = $level; $directorylist[$startdir . $file]['dir'] = 1; $directorylist[$startdir . $file]['name'] = $file; $directorylist[$startdir . $file]['path'] = $startdir; if ($searchSubdirs) {if ((($maxlevel) == "all") or ($maxlevel > $level)) { $list2 = filelist($startdir . $file . "/", $searchSubdirs, $directoriesonly, $maxlevel, $level + 1); if(is_array($list2)) { $directorylist = array_merge($directorylist, $list2); }}} } else { if (!$directoriesonly) { //if you want to include files; build your file array //however you choose; add other file details that you want. $directorylist[$startdir . $file]['level'] = $level; $directorylist[$startdir . $file]['dir'] = 0; $directorylist[$startdir . $file]['name'] = $file; $directorylist[$startdir . $file]['path'] = $startdir; }}}} closedir($dh);}}return($directorylist);}$files = filelist("./Display_Pictures",1,0); // call the functionforeach ($files as $list) {//print array echo "<img src=\" ".$list['path']."/".$list['name']." \" />";}?> [/code] Quote Link to comment https://forums.phpfreaks.com/topic/12446-show-a-number-of-images-per-page/ Share on other sites More sharing options...
bo0 Posted June 21, 2006 Author Share Posted June 21, 2006 Anyone? Quote Link to comment https://forums.phpfreaks.com/topic/12446-show-a-number-of-images-per-page/#findComment-48109 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.