ok
Direktori : /home2/selectio/public_html/caliberembedded.com/ |
Current File : /home2/selectio/public_html/caliberembedded.com/incubation-details.php |
<?php include 'header.php'; $incubation_id = $_GET['incubation']; ?> <style> .about-img-box::before{ background-image: none; } </style> <style> .main-banner-in{ padding-bottom: 40px; } .main-banner-in .h1-title{ margin-top: -10%; } </style> <?php $query = $pdo->prepare("SELECT * FROM tbl_service WHERE service_type=4 AND id=".$incubation_id); $query->execute(); $result_details = $query->fetchAll(PDO::FETCH_ASSOC); ?> <section class="main-banner-in"> <span class="shape-1 animate-this"> <img src="assets/images/shape-1.png" alt="shape"> </span> <span class="shape-2 animate-this"> <img src="assets/images/shape-2.png" alt="shape"> </span> <span class="shape-3 animate-this"> <img src="assets/images/shape-3.png" alt="shape"> </span> <span class="shape-4 animate-this"> <img src="assets/images/shape-4.png" alt="shape"> </span> <div class="container"> <div class="row"> <div class="col-lg-12"> <h1 class="h1-title"><?=$result_details[0]['title']?></h1> </div> </div> </div> </section> <!--About Us Start--> <section class="main-about-us-in"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-6"> <div class="about-img-box wow fadeInLeft animated" data-wow-delay=".4s"> <div class="about-img" style="margin-left: 20%;"> <img src="admin/<?=$result_details[0]['image']?>" alt="about us"> </div> </div> </div> <div class="col-lg-6"> <div class="about-us-content"> <div class="about-us-title"> <h2 class="h2-subtitle"><?=$result_details[0]['title']?></h2> <!--<h2 class="h2-title">We Have Best Online Education</h2>--> </div> <?php foreach ($result_details as $row_course){ ?> <p> <?=nl2br($row_course['description'])?> </p> <?php } ?> </div> </div> </div> </div> </section> <!--About Us End--> <?php include 'footer.php'; ?>