Server : LiteSpeed System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u615232177 ( 615232177) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/u615232177/domains/solarboardlimited.com/public_html/ |
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
$page_title = "Gallery";
$page_header = "gallery_header.jpg";
include("header.php"); ?>
<title><?php echo $company_name; ?> - <?php echo $page_title; ?></title>
<?php include("page_header.php"); ?>
<!-- gallery-area -->
<div class="gallery-area py-100">
<div class="container">
<div class="row">
<div class="col-lg-6 mx-auto">
<div class="site-heading text-center wow fadeInDown" data-wow-delay=".25s">
<span class="site-title-tagline"><i class="fas fa-solar-panel"></i>our Gallery</span>
<h2 class="site-title">Seeing is Believing</h2>
<div class="heading-divider"></div>
</div>
</div>
</div>
<div class="row g-4 popup-gallery">
<?php
$stmt_ser = $con -> prepare("SELECT picture FROM gallery1");
$stmt_ser -> execute();
$stmt_ser -> store_result();
$stmt_ser -> bind_result($picture);
$numrows_ser = $stmt_ser -> num_rows();
if($numrows_ser > 0){
while ($stmt_ser -> fetch()) { ?>
<div class="col-md-3">
<div class="gallery-item wow fadeInUp" data-wow-delay=".25s">
<div class="gallery-img">
<img src="site_img/gallery/<?= $picture ?>" alt="">
</div>
<div class="gallery-content">
<a class="popup-img gallery-link" href="site_img/gallery/<?= $picture ?>"><i
class="fal fa-plus"></i></a>
</div>
</div>
</div>
<?php } } ?>
</div>
</div>
</div>
<!-- gallery-area end -->
</main>
<?php include("footer.php"); ?>