BLACKSITE
:
216.73.217.52
:
162.213.255.42 / mudradiamond.com
:
Linux server146.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
:
/
home
/
mudrfoqg
/
public_html
/
Upload File:
files >> /home/mudrfoqg/public_html/product.php
<!DOCTYPE html> <html lang="en"> <head> <?php include "include/head.php"; if (isset($_GET['url']) && $_GET['url'] != '') { $url = $_GET['url']; $product = mysqli_fetch_assoc(mysqli_query($con, "SELECT * FROM `product` WHERE `url` = '$url'")); ?> <title><?= $product['meta_title'] ?></title> <meta name="description" content="<?= $product['meta_description'] ?>" /> <meta name="keywords" content="<?= $product['keyword'] ?>" /> <link rel="canonical" href="<?= $product['canonical_tag'] ?>" /> </head> <body> <?php include "include/header.php"; $url = $_GET['url']; $product = mysqli_fetch_assoc(mysqli_query($con, "SELECT * FROM `product` WHERE `url` = '$url'")); $image = json_decode($product['image']); ?> <!--breadcrumb section start--> <div class="breadcrumb-section pt-40 pb-40" data-background="assets/images/shapes/breadcrumb-bg.jpg"> <div class="container"> <p class="breadcrumb-text fw-light mb-0"><a href="index.php">Home</a>/<span class="primary-text-color"><?= $product['name'] ?></span></p> </div> </div> <!--breadcrumb section end--> <section class="ur-cta-section position-relative z-1 ptb-120 overflow-hidden bg-white"><span class="bg-shape position-absolute z--1 light-bg"></span> <div class="container"> <div class="row justify-content-center align-items-center g-5"> <div class="col-xl-5 col-lg-6"> <img src="media/product/<?= $image[0] ?>" alt="<?= $product['image_alt_tag'] ?>" width="100%"> </div> <div class="col-xl-6 offset-xl-1 col-lg-6 ps-xl-5"> <div class="ps-2 ur-cta-content"> <h2 class="display-3 mb-32 fw-normal wow fadeInUp" data-wow-duration="0.5s"><?= $product['title'] ?></h2> <?= $product['description'] ?> <a href="contact.php" class="template-btn primary-btn wow fadeInUp" data-wow-delay="0.5s" data-wow-duration="0.5s"><span>Enquiry Now</span></a> </div> </div> </div> </div> </section> <?php include "include/footer.php" ?> <?php include "include/foot.php"; } else { header('Location: index.php#products'); } ?> </body> </html>