Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/imyrqtmy/public_html/januarytechnology/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include("admin/includes/config.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <?php include 'includes/title.php';?> </head> <body> <div class="page-wrapper"> <!-- Preloader --> <!-- Main Header--> <?php include 'includes/header.php';?> <!--End Main Header --> <?php $id = $_GET['id']; $query = "SELECT * FROM services WHERE id='$id'"; $query_run =mysqli_query($conn, $query); if(mysqli_num_rows($query_run) > 0){ foreach($query_run as $row){ ?> <!-- Start main-content --> <section class="page-title" style="background-image: url(images/background/page-title.jpg);"> <div class="auto-container"> <div class="title-outer"> <h1 class="title"><?php echo $row['service_name']; ?></h1> <ul class="page-breadcrumb"> <li><a href="home.php">Home</a></li> <li>Services</li> </ul> </div> </div> </section> <!--Start Services Details--> <section class="services-details"> <div class="container"> <div class="row"> <!--Start Services Details Sidebar--> <div class="col-xl-5 col-lg-5"> <img src="<?php echo "admin/service/" . $row['photo']; ?>" alt="" /> </div> <!--Start Services Details Content--> <div class="col-xl-7 col-lg-7"> <div class="services-details__content"> <h4><?php echo $row['service_name']; ?></h4> <p style="text-align:justify;"><?php echo $row['description']; ?></p> </div> </div> <!--End Services Details Content--> </div> </div> </section> <?php }} ?> <!--End Services Details--> <?php include 'includes/footer.php';?> </div><!-- End Page Wrapper --> <!-- Scroll To Top --> <div class="scroll-to-top scroll-to-target" data-target="html"><span class="fa fa-angle-up"></span></div> <script data-cfasync="false" src="../../cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="js/jquery.js"></script> <script src="js/popper.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.fancybox.js"></script> <script src="js/jquery-ui.js"></script> <script src="js/wow.js"></script> <script src="js/appear.js"></script> <script src="js/select2.min.js"></script> <script src="js/swiper.min.js"></script> <script src="js/owl.js"></script> <script src="js/script.js"></script> </body> </html>