php glob() not returning all files

TaylorJ

New Member
I searched this site and found a very useful snippet of code that i've been able to use.\[code\] $counter = 0; foreach (glob("images/gallery/photo_gallery/resized/*.jpg") as $pathToThumb) { $filename = basename($pathToThumb); $pathToLarge = 'images/gallery/photo_gallery/' . $filename; echo ('<a href="'.$pathToLarge.'"><img src="'.$pathToThumb.'" /></a>'); $counter++; }\[/code\]But for some reason this will only return the first 30 images in my directory. (there are 81) Can anyone think why this is happening?Thanks.
 
Back
Top