php - Infinite scroll on a foreach loop -
so created foreach loop below, , it's loading in images server couple hundred of em , want load more images scroll down page it's not loading hundreds of images @ once.
<div id="container"> <?php foreach(glob("img/weddingcakes/*.*") $filename){ ?> <div class="item"><img src="img/weddingcakes/<?php echo basename($filename) . "\n"; ?>" alt=""></div> <?php } ?> </div>
all images stored in database.
any suggestions on how go adding infinite scroll?
javascript handle better php. use ajax call chuncks of images list according scroll pos.
Comments
Post a Comment