displayProducts.php 928 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?= $this->extend('layout') ?>
  2. <?= $this->section('content') ?>
  3. <div class ="flex2">
  4. <div class="content">
  5. <h11> <?php echo $category; ?> </h11>
  6. <br><br>
  7. <h4 class ="bellefair">This page displays our products</h4>
  8. <div class ="portfolio">
  9. <br><br><br>
  10. <?php
  11. foreach($result as $stuff)
  12. {
  13. echo " <div class =\"item\"> " .htmlspecialchars($stuff['imageTitle']) ." GHC". $stuff['price'] . "<img class = \"img-fluid \" id =\"stop\" <img src =".base_url('productImages')."/".$stuff['image']."><br><br class=\"clearfix\"><a href =productInfo/".$stuff['Id'].">more info</a> </div><br>";
  14. //echo "<a href = productInfo/" . $stuff['info'] . "> ". $tuff['info'] ." </a> </p>";
  15. }
  16. ?>
  17. <br class ="clearfix"><br>
  18. </div>
  19. <div>
  20. <h4 class="bellefair">pages : </h4>
  21. <h3 class ="links"><?= $pager->links() ?></h3></div>
  22. </div>
  23. <?= $this->endSection() ?>