Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="galleries">
- <?php
- $galleries = scandir("gallery");
- foreach($galleries as $gallery){
- if (strlen($gallery) > 2):
- $files = glob("gallery/$gallery/*.{jpg,png,gif,bmp}", GLOB_BRACE);
- ?>
- <li >
- <div style="position: absolute; top: 10px; left: 10px; width: 345px; height: 185px; background: url('gallery/<? echo $gallery ?>/thumb.jpg') no-repeat center; background-size: 100%; border-radius: 2px;"></div>
- <span><? echo $gallery ?></span>
- <a rel="<? echo $gallery; ?>" href="<? echo "gallery/".$gallery."/thumb.jpg" ?>">
- <div class="album-info"> <? echo (count($files)); ?> PHOTOS</div>
- </a>
- <?foreach($files as $img): ?>
- <a rel="<? echo $gallery ?>" href="<? echo $img ?>"></a>
- <? endforeach; ?>
- </li>
- <? endif;
- }
- ?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment