Server IP : 103.53.40.154 / Your IP : 3.145.196.150 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/leetcoaching.co.in/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<div id="gallery" class="it-gallery-area p-relative grey-bg-2 pt-20 pb-20"> <div class="container"> <div class="row"> <div class="col-xl-12"> <div class="it-gallery-title-box text-center pb-20"> <!--<span class="it-section-subtitle-5">--> <!-- <i class="fa-light fa-book"></i>--> <!-- portfolio--> <!-- <i class="fa-light fa-book"></i>--> <!--</span>--> <h2 class="it-section-title-3">Photo Gallery</h2> </div> </div> </div> <div class="row"> <?php $sqlgal = "SELECT * FROM `tbl_image` WHERE show_btn = 'Yes' LIMIT 8"; $rungal = mysqli_query($db,$sqlgal) or die("Query Not run"); if(mysqli_num_rows($rungal) > 0 ){ while($datagal = mysqli_fetch_assoc($rungal)){ ?> <div class="col-xl-3 col-lg-6"> <div class="it-gallery-item p-relative"> <div class="it-gallery-thumb"> <img src="<?php echo $wspath ?>admin/images/gallery/<?php echo $datagal["image"]?>" alt> </div> <div class="it-gallery-icon"> <a class="popup-image" href="<?php echo $wspath ?>admin/images/gallery/<?php echo $datagal["image"]?>" > <i class="fa-light fa-plus"></i></a> </div> </div> </div> <?php } } ?> </div> </div> </div>