hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
grapelegacy.com
/
Upload FileeE
HOME
<?php ob_start(); include_once('config/config.php'); $nav = "product-detail"; if (!empty($_REQUEST['DID'])) { $_REQUEST['DID'] = $_REQUEST['DID']; } else { header("Location: products.php"); exit(); } $sql_select = "Select * from product where id = '" . $_REQUEST['DID'] . "'"; $query_select = mysqli_query($conn, $sql_select); if(mysqli_num_rows($query_select)==0){ header("Location: products.php"); exit(); }else{ $res_select = mysqli_fetch_array($query_select); $sql_cat = "Select * from category where id = '".$res_select['categoryID']."'"; $query_cat = mysqli_query($conn, $sql_cat); $res_cat = mysqli_fetch_array($query_cat); } if (!empty($_SESSION['msg1'])) { $err = $_SESSION['msg1']; echo "<script>alert('$err');window.location.reload();</script>"; unset($_SESSION['msg1']); } if (!empty($_SESSION['msg'])) { $err = $_SESSION['msg']; echo "<script>alert('$err');window.location.reload();</script>"; unset($_SESSION['msg']); } ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> <head> <!-- Basic Page Needs --> <meta charset="utf-8"> <!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]--> <title>Product Detail | Grape Legacy</title> <meta name="author" content="themesflat.com"> <!-- Mobile Specific Metas --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <!-- Bootstrap --> <!-- <link rel="stylesheet" type="text/css" href="stylesheets/bootstrap.css" /> --> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css" /> <!-- Theme Style --> <link rel="stylesheet" type="text/css" href="stylesheets/style.css"> <!-- Responsive --> <link rel="stylesheet" type="text/css" href="stylesheets/responsive.css"> <!-- Colors --> <link rel="stylesheet" type="text/css" href="stylesheets/colors/color1.css" id="colors"> <!-- Animation Style --> <link rel="stylesheet" type="text/css" href="stylesheets/animate.css"> <!-- Favicon and touch icons --> <link href="icon/icon.png" rel="apple-touch-icon-precomposed" sizes="48x48"> <link href="icon/icon.png" rel="apple-touch-icon-precomposed"> <link href="icon/icon.png" rel="shortcut icon"> </head> <body> <div id="loading-overlay"> <div class="loader"></div> </div> <!-- /.loading-overlay --> <?php include('include/header.php'); ?> <div class="page-title parallax parallax1 "> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="page-title-content text-center"> <div class="breadcrumbs"> <ul> <li><a href="#">Home</a></li> <li><a href="#">Product</a></li> <li class="blog"><a href="#">Product Details</a></li> </ul> </div> <div class="page-title-heading"> <h2 class="title"><a href="#">PRODUCT DETAILS</a></h2> </div> </div> </div> </div> </div> </div> <!-- /.page-title --> <div class="main-shop-detail-review"> <section class="main-shop-detail"> <div class="container"> <div class="row"> <div class="col-lg-6 col-md-6"> <div class="image-wrap"> <div class="image-rallary mg-bottom-45"> <div class="themesflat-gallery style-2 has-arrows arrow-center arrow-circle offset-v-82 has-thumb w170 clearfix" data-gap="0" data-column="1" data-column2="1" data-column3="1" data-auto="false"> <div class="owl-carousel owl-theme"> <div class="gallery-item active"> <div class="inner"> <div class="thumb"> <img src="upload/product/<?php echo $res_select['img']; ?>" alt="Image"> <div class="search-images"> <a data-type="iframe" href="upload/product/<?php echo $res_select['img']; ?>" class="zoom-pic"> <i class="icon_zoom-in_alt " aria-hidden="true"></i> </a> </div> </div> </div> </div> </div> </div><!-- /.themesflat-cousel-box --> </div> </div> </div> <div class="col-lg-6 col-md-6"> <div class="content-wrap"> <h2 class="heading"><a href="#"><?php echo $res_select['title']; ?></a></h2> <div class="content-text"> <?php echo $res_select['description']; ?> </div> <div class="info-content"> <ul> <li> <span> <span class="note">Category:</span><?php echo $res_cat['name']; ?> </span> </li> </ul> </div> <div class="content-cart clearfix"> <div class="elm-btn"> <a href="#" data-bs-toggle="modal" data-bs-target="#requestModal" class="themesflat-button outline ol-accent margin-top-40 hvr-shutter-out-horizontall">Request a Quote</a> </div> </div> </div> </div> </div> <!-- /row--> </div> <!-- /container --> </section> <!-- /main-shop-detail --> <?php $sql_product = "Select * from product where status=1 and categoryID = '" . $res_select['categoryID'] . "' and id != '" . $_REQUEST['DID'] . "' order by id desc limit 0,4"; $query_product = mysqli_query($conn, $sql_product); if(mysqli_num_rows($query_product)>0){ ?> <section class="flat-products style2"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="title-section"> <h3 class="our-product-title"><a href="#"> Our Products </a></h3> <h1 class="our-product-main"><a href="#"> Popular This Month </a></h1> <div class="our-product-image"> <img src="image/homepage14.png" alt="image"> </div> </div> <!-- /title-section --> <div class="product-content product-fourcolumn clearfix"> <ul class="product style2 isotope-product clearfix"> <?php while($res_product = mysqli_fetch_array($query_product)){ ?> <li class="product-item"> <div class="product-thumb clearfix"> <a href="product-detail.php?DID=<?php echo $res_product['id']; ?>" class="product-thumb"> <img src="upload/product/<?php echo $res_product['img']; ?>" alt="<?php echo $res_product['title']; ?>" style="width:auto;height:200px;"> </a> </div> <div class="product-info text-center clearfix"> <span class="product-title"><?php echo $res_product['title']; ?></span> </div> </li> <!-- /product-item --> <?php } ?> </ul> </div> </div> <!-- /col-lg-12 --> </div> <!-- /row --> </div> <!-- /container --> </section> <!-- /flat-products--> <?php } ?> </div> <!-- Modal --> <div class="modal fade" id="requestModal" tabindex="-1" aria-labelledby="requestModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h1 class="modal-title fs-5" id="requestModalLabel">Request a Quote</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body flat-get-in"> <form action="request-quote.php" method="post" accept-charset="utf-8" class="form-submit contact-form wpcf7-form"> <span class="wpcf7-form-control-wrap your-name"> <input type="text" tabindex="1" id="name" name="name" value="" class="wpcf7-form-control" placeholder="Name*" required> </span> <div class="flat-divider-margintop10px"></div> <span class="wpcf7-form-control-wrap your-email"> <input type="email" tabindex="3" id="email" name="email" value="" class="wpcf7-form-control" placeholder="Email*" required> </span> <div class="flat-divider-margintop12px"></div> <span class="wpcf7-form-control-wrap your-message"> <textarea name="message" tabindex="5" cols="40" rows="10" class="wpcf7-form-control wpcf7-textarea" placeholder="Message*" required></textarea> </span> <span class="wrap-submit submit-form"> <button name="submit" type="submit" id="submit" class="submit btn btn-styl hvr-shutter-out-horizontal wpcf7-form-control wpcf7-submit">SUBMIT</button> </span> </form> </div> </div> </div> </div> <?php include('include/footer.php'); ?> <script src="javascript/jquery.min.js"></script> <script src="javascript/jquery.easing.js"></script> <script src="javascript/owl.carousel.min.js"></script> <script src="javascript/owl.carousel2.thumbs.js"></script> <script src="javascript/jquery-fancybox.js"></script> <script src="javascript/jquery-countTo.js"></script> <script src="javascript/jquery-waypoints.js"></script> <!-- <script src="javascript/bootstrap.min.js"></script> --> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.min.js"></script> <script src="javascript/main.js"></script> </body> </html>