hjkhhrteuiluiliuuiluiluiluilrtrt
bnmbertsdfsdfluiluiluiluiluiluiltdfg
/
home
/
kairalir
/
alnajidtransport.com
/
Upload FileeE
HOME
<?php include 'layouts/header.php'; ?> <style> .what-we-active { background: #ede02d00; color: #f5e724 !important; border-bottom: 3px solid; } </style> <?php $id = $_GET['id']; $result = $db->prepare("SELECT * FROM services where id= :post_id"); $result->bindParam(':post_id', $id); $result->execute(); for ($i = 0; $row = $result->fetch(); $i++) { ?> <section class="hero-wrap hero-wrap-2" style="background-image: url('uploads/<?php echo $row['file']; ?>');" data-stellar-background-ratio="0.5"> <div class="overlay"></div> <div class="container"> <div class="row no-gutters slider-text align-items-end"> <div class="col-md-9 ftco-animate pb-5"> <p class="breadcrumbs mb-2"><span class="mr-2"><a href="index.php">Home <i class="fa fa-chevron-right"></i></a></span> <span class="mr-2"><a href="services.php">Services <i class="fa fa-chevron-right"></i></a></span> <span> <?php echo $row['services_title']; ?> <i class="fa fa-chevron-right"></i> </span> </p> <h1 class="mb-0 bread"> <?php echo $row['services_title']; ?> </h1> </div> </div> </div> </section> <section class="ftco-section ftco-degree-bg"> <div class="container"> <div class="row"> <div class="col-lg-8 ftco-animate order-md-last"> <p> <img src="uploads/<?php echo $row['file']; ?>" alt="" class="img-fluid"> </p> <h2 class="mb-3"> <?php echo $row['services_title']; ?> </h2> <p> <?php echo $row['services_detail']; ?> </p> </div> <!-- .col-md-8 --> <div class="col-lg-4 sidebar pl-lg-5 ftco-animate"> <div class="sidebar-box ftco-animate"> <div class="categories"> <h3>Our Services</h3> <?php $result = $db->prepare("SELECT * FROM services"); $result->execute(); for ($i = 0; $row = $result->fetch(); $i++) { ?> <li><a href="service-details.php?id=<?php echo $row['id']; ?>"> <?php echo $row['services_title']; ?> <span class="fa fa-chevron-right"></span> </a></li> <?php } ?> </div> </div> </div> </div> </div> </div> </section> <!-- .section --> <?php } ?> <?php include 'layouts/footer.php'; ?>