displayGallery.php 664 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?= $this->extend('layout') ?>
  2. <?= $this->section('content') ?>
  3. <div class="content">
  4. <h11> </h11>
  5. <br><br>
  6. <h4 class ="bellefair">Gallery</h4>
  7. <div class ="portfolio">
  8. <br><br><br>
  9. <?php
  10. foreach($result as $stuff)
  11. {
  12. echo " <div class =\"item\"> " . $stuff['imageTitle'] . "<img class = \"img-fluid \" id =\"stop\" <img src =".base_url('galleryImages')."/".$stuff['image']."><br><br class=\"clearfix\"> </div><br>";
  13. }
  14. ?>
  15. <br class ="clearfix"><br>
  16. <br>
  17. </div>
  18. <br><br>
  19. <div>
  20. <h4 class="bellefair">pages : </h4>
  21. <h3 class ="links"><?= $pager->links() ?></h3></div>
  22. <?= $this->endSection() ?>