D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
salon.encodersunlimited.com
/
Filename :
gallery.php
back
Copy
<!doctype html> <html lang="en"> <head> <?php include "style.php"; ?> </head> <body> <!-- PRELOADER SPINNER ============================================= --> <div id="loading" class="loading-black"> <div id="loading-center"><span class="loader"></span></div> </div> <!-- STYLE SWITCHER ============================================= --> <div id="stlChanger"> <div class="blockChanger bgChanger"> <a href="#" class="chBut ico-35"> <p class="switch"> <span class="drk-mode flaticon-moon"></span> <span class="lgt-mode flaticon-sum"></span> </p> </a> </div> </div> <!-- END SWITCHER --> <!-- PAGE CONTENT ============================================= --> <div id="page" class="page"> <!-- HEADER ============================================= --> <?php include "header.php"; ?> <section id="about-page" class="inner-page-hero division"> <div class="container"> <div class="row"> <div class="col"> <div class="page-hero-txt color--white"> <h2>Gallery Sissor Sound</h2> <p>Luxury salon where you will feel unique and special</p> </div> </div> </div> </div> <!-- End container --> </section> <!-- INNER PAGE TITLE ============================================= --> <section id="reviews-page" class="pb-6 inner-page-title division"> <div class="container"> <div class="row"> <div class="col"> <div class="page-title-txt"> <h2>It’s Time For a Change</h2> <p>The perfect combination of beauty and relaxation</p> </div> </div> </div> </div> <!-- End container --> </section> <!-- END INNER PAGE TITLE --> <!-- GALLERY-1 ============================================= --> <div id="gallery-1" class="gallery-section division"> <div class="container"> <!-- IMAGES WRAPPER --> <?php require('config.php'); // Fetch images from gallery table $result = mysqli_query($conn, "SELECT image FROM gallery"); ?> <div class="row row-cols-1 row-cols-sm-2 row-cols-lg-3"> <?php while ($row = mysqli_fetch_assoc($result)) : ?> <div class="col"> <div class="gallery-image"> <div class="hover-overlay"> <!-- Image --> <img class="img-fluid" src="sissadminor/<?php echo htmlspecialchars($row['image']); ?>" alt="gallery-image"> <div class="item-overlay"></div> <!-- Image Zoom --> <div class="image-data"> <div class="gallery-link ico-40 color--white"> <a class="image-link" href="sissadminor/<?php echo htmlspecialchars($row['image']); ?>"> <span class="flaticon-visibility"></span> </a> </div> </div> </div> </div> </div> <?php endwhile; ?> </div> <!-- END IMAGES WRAPPER --> <!-- INSTAGRAM LINK --> <div class="row"> <div class="col"> <div class="more-btn"> <a href="#" class="btn btn--tra-black hover--black">Visit Our Instagram</a> </div> </div> </div> <!-- END BUTTON --> </div> <!-- End container --> </div> <!-- END GALLERY-1 --> <!-- FOOTER-3 ============================================= --> <footer id="footer-3" class="pt-8 footer division"> <div class="container text-center"> <!-- FOOTER CONTENT --> <div class="row"> <!-- FOOTER CONTACTS --> <div class="col-sm-6 col-lg-4"> <div class="footer-contacts"> <!-- Title --> <h5 class="h5-md">Our Location</h5> <!-- Salon Name --> <p>Sissor Sound </p> <!-- Address --> <p>Champasari, Siliguri, West Bengal 734003</p> </div> <div class="footer-contacts"> <!-- Title --> <!-- <h5 class="h5-md">Our Location</h5> --> <!-- Salon Name --> <p>Sissor Sound </p> <!-- Address --> <p>Champasari, Siliguri, West Bengal 734003</p> </div> </div> <!-- FOOTER CONTACTS --> <div class="col-sm-6 col-lg-4"> <div class="footer-info"> <!-- Title --> <h5 class="h5-md">Get in Touch</h5> <!-- Phone --> <p class="footer-phone"><a href="tel:94764 19500">phone: 94764 19500</a></p> <!-- Email --> <p class="footer-email"><a href="mailto:yourdomain@mail.com">info@sissorsound.com</a></p> <!-- List --> <ul class="foo-socials ico-20 text-center clearfix"> <li><a href="https://www.facebook.com/sissorsoundsalon" class="ico-facebook"><span class="flaticon-facebook"></span></a></li> <li><a href="https://www.instagram.com/sissorsoundfamilysalon" class="ico-youtube"><span class="flaticon-instagram"></span></a></li> </ul> </div> </div> <!-- FOOTER CONTACTS --> <div class="col-sm-6 col-lg-4"> <div class="footer-info"> <!-- Title --> <iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fsissorsoundsalon&tabs=timeline&width=340&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId=1052030032959673" width="340" height="300" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe> </div> </div> </div> <!-- END FOOTER CONTENT --> <hr> <!-- FOOTER DIVIDER LINE --> <!-- FOOTER COPYRIGHT --> <div class="bottom-footer"> <div class="row"> <div class="col"> <div class="footer-copyright"> <p>© 2025 Sissor Sound Salon. All Rights Reserved Develop With <i class="fa-solid fa-heart" style="color: #f90101;"></i> by <a href="encodersunlimited.com"> <b>Encoders Unlimited</b></a> </p> </div> </div> </div> <!-- End row --> </div> <!-- BOTTOM FOOTER --> </div> <!-- End container --> </footer> <!-- END FOOTER-3 --> </div> <!-- END PAGE CONTENT --> <!-- EXTERNAL SCRIPTS ============================================= --> <?php include "footer.php"; ?> </body> </html>