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/florencewaltersconsulting.com/public_html/ |
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
$page_title = "Services";
$page_header = "services_header.jpg";
include("header.php"); ?>
<title><?php echo $company_name; ?> - <?php echo $page_title; ?></title>
<?php include("page_header.php"); ?>
<div class="multicolumn multicolumn-page mt-100">
<div class="container">
<div class="multicolumn-inner">
<div class="row product-grid">
<?php
$count = 0;
$stmt_ser = $con -> prepare("SELECT unique_id,heading,preamble,picture FROM services");
$stmt_ser -> execute();
$stmt_ser -> store_result();
$stmt_ser -> bind_result($ser_id,$service_head,$service_preamble,$picture);
$numrows_ser = $stmt_ser -> num_rows();
if($numrows_ser > 0){
while ($stmt_ser -> fetch()) {
$count++;
?>
<div class="col-xl-4 col-md-6 col-12" data-aos="fade-up">
<a
class="multicolumn-card"
href="details?u=<?= $ser_id; ?>&title=<?= "services"; ?>"
aria-label="View Service Details">
<div class="">
<img
src="site_img/<?= "services" ?>/<?= $picture ?>"
alt="service image"
style="width:100%;height:300px;object-fit:cover;"
loading="lazy">
</div> <br>
<h2 class="heading text-28"><?= $service_head ?></h2>
<div class="text text-16">
<?= $service_preamble ?>
</div>
</a>
</div>
<?php } } ?>
</div>
</div>
</div>
</div>
</main>
<?php include("footer.php"); ?>