File Manager by Orions-Hunter
Editing: gallery.php
<?php include("assets/header.php"); ?> <!-- Page Header Start --> <div class="container-fluid page-header py-5 mb-5 wow fadeIn" data-wow-delay="0.1s"> <div class="container text-center py-5"> <h1 class="display-3 text-white mb-4 animated slideInDown">Gallery</h1> <nav aria-label="breadcrumb animated slideInDown"> <ol class="breadcrumb justify-content-center mb-0"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Gallery</li> </ol> </nav> </div> </div> <!-- Page Header End --> <div class="container-xxl py-5"> <div class="container"> <div class="text-center mx-auto wow fadeInUp" data-wow-delay="0.1s" style="max-width: 500px;"> <p class="fs-5 fw-bold text-primary"></p> <h1 class="display-5 mb-5">Our Gallery</h1> </div> <div class="row g-4 portfolio-container"> <?php $query = "SELECT * FROM `gallery`"; $result = mysqli_query($con, $query); while($row = mysqli_fetch_assoc($result)) { ?> <div class="col-lg-4 col-md-6 portfolio-item first wow fadeInUp" data-wow-delay="0.1s"> <div class="portfolio-inner rounded"> <img class="img-fluid" src="admin/dashboard/images/gallery/<?php echo $row['image']; ?>" alt=""> <div class="portfolio-text"> <h4 class="text-white mb-4"><?php echo $row['title']; ?></h4> <div class="d-flex"> <a class="btn btn-lg-square rounded-circle mx-2" href="admin/dashboard/images/gallery/<?php echo $row['image']; ?>" data-lightbox="portfolio"><i class="fa fa-eye"></i></a> <!--<a class="btn btn-lg-square rounded-circle mx-2" href=""><i class="fa fa-link"></i></a>--> </div> </div> </div> </div> <?php } ?> </div> </div> </div> <?php include("assets/footer.php"); ?>
💾 Save
← Back to Dir