:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/www/demo/marztoursandtravels.com/**
:: Editing File: gallery.php
<?php include"header.php"?> <!-- Inner Section Start --> <section class="inner-area parallax-bg" data-background="images/bg/px-1.jpg" data-type="parallax" data-speed="3"> <div class="container"> <div class="section-content"> <div class="row"> <div class="col-12"> <h4>Gallery</h4> <p><a href="index.php">Home </a> - Gallery</p> </div> </div> </div> </div> </section> <!-- Inner Section End --> <!-- Gallery Section Start --> <section class="gallery-section pt-85 pb-0"> <div class="container-fluid"> <div class="row"> <div class="section-title"> <h2>Tours <span>Travels</span> Gallery</h2> </div> </div> <div class="container"> <div class="row gallery-items"> <?php $gallery_result ="SELECT * FROM gallery"; $gallery_stmt1=$conn->query($gallery_result); $gallery_all = $gallery_stmt1->fetchall(); foreach ($gallery_all as $gallery) { ?> <div class="col-sm-3 "> <div class="gallery-item"> <div class="thumb"> <img src="images/gallery/<?php echo $gallery['name'];?>" alt="image"> <div class="overlay"> <div class="inner"> <a href="images/gallery/<?php echo $gallery['name'];?>" class="icon lightbox-image"> <i class="fa fa-plus"></i> </a> </div> </div> </div> </div> </div> <?php } ?> </div> </div> </div> </section> <br> <br> <br> <!-- Gallery Section End --> <?php include"footer.php"?>