ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux in-mum-web1642.main-hosting.eu 5.14.0-611.42.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 24 05:30:20 EDT 2026 x86_64 Current Path : /home/u323559503/domains/purplelimonada.com/public_html/ |
| Current File : /home/u323559503/domains/purplelimonada.com/public_html/service-details.php |
<?php include('include/header1.php');?>
<?php
$stmt = $conn->prepare("SELECT * FROM service WHERE delete_status='0' AND id=?");
if(isset($_POST['id'])){
$stmt->execute([$_POST['id']]);
}
if(isset($_GET['id'])){
$stmt->execute([$_GET['id']]);
}
$record = $stmt->fetchAll();
foreach ($record as $key) { ?>
<!--<< Breadcrumb Section Start >>-->
<div class="breadcrumb-wrapper bg-cover bg-background-area"data-bg="../../assets/img/bg3.jpg">
<div class="border-shape">
<img src="../../assets/img/element.png" alt="DevOps Consulting">
</div>
<div class="line-shape">
<img src="../../assets/img/line-element.png" alt="DevOps Consulting">
</div>
<div class="container">
<div class="page-heading">
<h1 class="wow fadeInUp" data-wow-delay=".3s">Services Details</h1>
<ul class="breadcrumb-items wow fadeInUp" data-wow-delay=".5s">
<li>
<a href="index.php">
Home
</a>
</li>
<li>
<i class="fas fa-chevron-right"></i>
</li>
<li>
<?php echo $key['heading'];?>
</li>
</ul>
</div>
</div>
</div>
<!-- Service Details Section Start -->
<section class="service-details-section fix section-padding">
<div class="container">
<div class="service-details-wrapper">
<div class="row g-4">
<div class="col-12 col-lg-4 order-2 order-md-1">
<div class="main-sidebar">
<div class="single-sidebar-widget">
<div class="wid-title">
<h3>All Services</h3>
</div>
<div class="widget-categories">
<?php
$stmt1 = $conn->prepare("SELECT * FROM service WHERE delete_status='0'");
$stmt1->execute();
$record1= $stmt1->fetchAll();
foreach ($record1 as $key1) { ?>
<ul>
<li><a href="#" onclick="submitForm1(event, <?php echo $key1['id'] ?>, '<?php echo $key1['heading'] ?>', '../../service-details.php')"><?php echo $key1['heading'];?></a><i class="fa-solid fa-arrow-right-long"></i></li>
</ul>
<?php }?>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-8 order-1 order-md-2">
<div class="service-details-items">
<div class="details-image">
<img src="../../panel/assets/images/<?php echo $key['photo'];?>" alt="purple limonada service img">
</div>
<div class="details-content">
<h3><?php echo $key['heading'];?></h3>
<p class="mt-3">
<?php echo html_entity_decode($key['content']);?>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php } ?>
<?php include('include/footer1.php');?>