Server IP : 103.53.40.154 / Your IP : 18.219.253.199 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/fastelevator.in/../bittootour.in/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include_once('admin/config.php'); $slug_name = $_GET['slug_url']; if(isset($_SERVER['PATH_INFO'])){ $slug_name=$_SERVER['PATH_INFO']; $querydt="SELECT * FROM `tbl_services` WHERE `slug_url`='$slug_name'"; $rundt = mysqli_query($db,$querydt) or die("Query Not run"); $datadt = mysqli_fetch_assoc($rundt); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <?php include 'top-link.php'; ?> <title> <?php if (isset($datadt["meta_title"]) && !empty($datadt["meta_title"])) { echo $datadt["meta_title"]; } else { echo $datadt["name"]; } ?> </title> <meta name="description" content="<?php echo $datadt["meta_desc"];?>"> <style> .detail-image img{ box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); border-radius:5px; } .para p{ text-align:justify; } </style> </head> <body> <?php include 'header.php'; ?> <div class="site-breadcrumb" style="background: url(<?=$wspath?>assets/img/breadcrumb/01.jpg)"> <div class="container"> <h2 class="breadcrumb-title"><?php echo $datadt["name"];?></h2> <ul class="breadcrumb-menu"> <li><a href="<?php echo $wspath?>">Home</a></li> <li class="active"><?php echo $datadt["name"];?></li> </ul> </div> </div> <div class="service-area bg py-120"> <div class="container"> <div class="row"> <div class="col-lg-6 mx-auto"> <div class="site-heading text-center"> <span class="site-title-tagline">Services</span> <h2 class="site-title"><?php echo $datadt["name"];?></h2> <div class="heading-divider"></div> </div> </div> </div> <div class="row"> <div class="col-md-12 col-lg-6"> <div class="detail-image"> <img src="<?php echo $wspath;?>admin/images/property-image/<?php echo $datadt['image'];?>" alt="<?php echo $datadt["name"];?>" title="<?php echo $datadt["name"];?>"> </div> </div> <div class="col-md-12 col-lg-6"> <div class="text-center "> <h3><?php echo $datadt["name"];?></h3> </div> <div class="para"> <?php echo $datadt["desc"];?> </div> <div class="text-center mt-3"> <a href="<?php echo $wspath?>enquiry.html" class="theme-btn"><span class="fas fa-taxi"></span>Book A Ride</a> <a href="tel:<?php echo $data1['phone']?>" class="theme-btn"><span class="fas fa-phone"></span>Call Now</a> </div> </div> </div> </div> </div> </div> </div> <?php include 'about-book.php'; ?> <?php include 'footer.php'; ?> </body> </html>