BLACKSITE
:
216.73.217.52
:
162.213.255.42 / mudradiamond.com
:
Linux server146.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
:
/
home
/
mudrfoqg
/
www
/
Upload File:
files >> /home/mudrfoqg/www/gallery.php
<!DOCTYPE html> <html lang="en"> <head> <?php include "include/head.php" ?> </head> <body> <?php include "include/header.php" ?> <!--breadcrumb section start--> <div class="breadcrumb-section pt-40 pb-40" data-background="assets/images/shapes/breadcrumb-bg.jpg"> <div class="container"> <p class="breadcrumb-text fw-light mb-0"><a href="index.php">Home</a>/<span class="primary-text-color">Our Gallery</span></p> </div> </div> <!--breadcrumb section end--> <section class="ur-latest-arrival ptb-120 bg-white"> <div class="container"> <div class="row g-4 justify-content-center"> <?php $sql = mysqli_query($con, "SELECT * FROM `gallery`"); while ($gallery = mysqli_fetch_assoc($sql)) { ?> <div class="col-xl-3 col-lg-4 col-sm-6"> <div class="ur-product-card position-relative card-sm-small" style="border: 1px solid #0a4a6e;"> <div class="feature-image d-flex align-items-cneter justify-content-center position-relative"> <a href="gallery.php"><img src="media/gallery/<?= $gallery['image'] ?>" alt="<?= $gallery['image_alt_tag'] ?>" class="img-fluid"></a> </div> </div> </div> <?php } ?> </div> </div> </section> <?php include "include/footer.php" ?> <?php include "include/foot.php" ?> </body> </html>