Server IP : 162.214.80.37 / Your IP : 216.73.216.83 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/edutextlearning/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!DOCTYPE html> <html lang="zxx"> <?php include'include/head.php'; ?> <?php $search_term = $_POST['search']; // @$seval = $_POST['name']; // @$seval = $_POST['isbn']; $sqlse = "select * from tbl_product where `name` LIKE '%$search_term%' OR `isbn` LIKE '%$search_term%'"; $sql_resse = mysqli_query($con, $sqlse) or die(mysqli_error($con)); $numrowp = mysqli_num_rows($sql_resse); ?> <body> <div class="site-wrapper" id="top"> <?php include'include/header.php'; ?> <section class="breadcrumb-section"> <h2 class="sr-only">Shop</h2> <div class="container"> <div class="breadcrumb-contents"> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index.php">Home</a></li> <li class="breadcrumb-item active">Shop</li> </ol> </nav> </div> </div> </section> <main class="inner-page-sec-padding-bottom"> <div class="container"> <div class="shop-toolbar mb--30 dno"> <div class="row align-items-center"> <div class="col-lg-2 col-md-2 col-sm-6"> <!-- Product View Mode --> <div class="product-view-mode"> <a href="#" class="sorting-btn active" data-target="grid"><i class="fas fa-th"></i></a> <a href="#" class="sorting-btn" data-target="grid-four"> <span class="grid-four-icon"> <i class="fas fa-grip-vertical"></i><i class="fas fa-grip-vertical"></i> </span> </a> <a href="#" class="sorting-btn" data-target="list "><i class="fas fa-list"></i></a> </div> </div> <div class="col-xl-5 col-md-4 col-sm-6 mt--10 mt-sm--0"> <span class="toolbar-status"> Showing 1 to 9 of 14 (2 Pages) </span> </div> <div class="col-lg-2 col-md-2 col-sm-6 mt--10 mt-md--0"> <div class="sorting-selection"> <span>Show:</span> <select class="form-control nice-select sort-select"> <option value="" selected="selected">3</option> <option value="">9</option> <option value="">5</option> <option value="">10</option> <option value="">12</option> </select> </div> </div> <div class="col-xl-3 col-lg-4 col-md-4 col-sm-6 mt--10 mt-md--0 "> <div class="sorting-selection"> <span>Sort By:</span> <select class="form-control nice-select sort-select mr-0"> <option value="" selected="selected">Default Sorting</option> <option value="">Sort By:Name (A - Z)</option> <option value="">Sort By:Name (Z - A)</option> <option value="">Sort By:Price (Low > High)</option> <option value="">Sort By:Price (High > Low)</option> <option value="">Sort By:Rating (Highest)</option> <option value="">Sort By:Rating (Lowest)</option> <option value="">Sort By:Model (A - Z)</option> <option value="">Sort By:Model (Z - A)</option> </select> </div> </div> </div> </div> <div class="shop-toolbar d-none dno"> <div class="row align-items-center"> <div class="col-lg-2 col-md-2 col-sm-6"> <!-- Product View Mode --> <div class="product-view-mode"> <a href="#" class="sorting-btn active" data-target="grid"><i class="fas fa-th"></i></a> <a href="#" class="sorting-btn" data-target="grid-four"> <span class="grid-four-icon"> <i class="fas fa-grip-vertical"></i><i class="fas fa-grip-vertical"></i> </span> </a> <a href="#" class="sorting-btn" data-target="list "><i class="fas fa-list"></i></a> </div> </div> <div class="col-xl-5 col-md-4 col-sm-6 mt--10 mt-sm--0"> <span class="toolbar-status"> Showing 1 to 9 of 14 (2 Pages) </span> </div> <div class="col-lg-2 col-md-2 col-sm-6 mt--10 mt-md--0"> <div class="sorting-selection"> <span>Show:</span> <select class="form-control nice-select sort-select"> <option value="" selected="selected">3</option> <option value="">9</option> <option value="">5</option> <option value="">10</option> <option value="">12</option> </select> </div> </div> <div class="col-xl-3 col-lg-4 col-md-4 col-sm-6 mt--10 mt-md--0 "> <div class="sorting-selection"> <span>Sort By:</span> <select class="form-control nice-select sort-select mr-0"> <option value="" selected="selected">Default Sorting</option> <option value="">Sort By:Name (A - Z)</option> <option value="">Sort By:Name (Z - A)</option> <option value="">Sort By:Price (Low > High)</option> <option value="">Sort By:Price (High > Low)</option> <option value="">Sort By:Rating (Highest)</option> <option value="">Sort By:Rating (Lowest)</option> <option value="">Sort By:Model (A - Z)</option> <option value="">Sort By:Model (Z - A)</option> </select> </div> </div> </div> </div> <div class="shop-product-wrap grid with-pagination row space-db--30 shop-border"> <?php if($numrowp == 0) { // echo 'in'; ?> <div class="col-lg-12 col-sm-12"> <div style="text-align: center;"> <span>There is no product that matches the search criteria. . </span><br><br> <br> <div class="wc-proceed-to-checkout"> <a href="index.php" class="btn btn-black">Shop Now</a> </div> </div> </div> <!-- Product Thumbnail Description End --> <!-- New Arrival Products Start Here --> <?php } else { $count = 1; // $sql = "select * from tbl_product "; while ($aaps = mysqli_fetch_assoc($sql_resse)){ $img = $aaps['main_img']; $cid = $aaps['caegory']; $sqpd = "select * from tbl_categories where id='$cid'"; $sql_pd = mysqli_query($con, $sqpd) or die(mysqli_error($con)); $sql_rowpd = mysqli_fetch_array($sql_pd); $name = $sql_rowpd['name']; ?> <div class="col-lg-4 col-sm-6"> <div class="product-card"> <div class="product-grid-content"> <div class="product-card--body"> <a href="shop_details.php?id=<?php echo $aaps['id']; ?>&cat=<?php echo $name; ?>"> <div class="card-image"> <img src="Admin/current_causes/<?php echo $img; ?>" class="pro-img" alt=""> </div> <div class="product-header"> <h3><a href="shop_details.php?id=<?php echo $aaps['id']; ?>&cat=<?php echo $name; ?>" class="sarch"><?php echo $aaps['name']; ?></a></h3> </div> </a> </div> </div> </div> </div> <?php } }?> </div> <!-- Pagination Block --> <!-- Modal --> <div class="modal fade modal-quick-view" id="quickModal" tabindex="-1" role="dialog" aria-labelledby="quickModal" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> <div class="product-details-modal"> <div class="row"> <div class="col-lg-5"> <!-- Product Details Slider Big Image--> <div class="product-details-slider sb-slick-slider arrow-type-two" data-slick-setting='{ "slidesToShow": 1, "arrows": false, "fade": true, "draggable": false, "swipe": false, "asNavFor": ".product-slider-nav" }'> <div class="single-slide"> <img src="image/products/product-details-1.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-2.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-3.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-4.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-5.jpg" alt=""> </div> </div> <!-- Product Details Slider Nav --> <div class="mt--30 product-slider-nav sb-slick-slider arrow-type-two" data-slick-setting='{ "infinite":true, "autoplay": true, "autoplaySpeed": 8000, "slidesToShow": 4, "arrows": true, "prevArrow":{"buttonClass": "slick-prev","iconClass":"fa fa-chevron-left"}, "nextArrow":{"buttonClass": "slick-next","iconClass":"fa fa-chevron-right"}, "asNavFor": ".product-details-slider", "focusOnSelect": true }'> <div class="single-slide"> <img src="image/products/product-details-1.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-2.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-3.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-4.jpg" alt=""> </div> <div class="single-slide"> <img src="image/products/product-details-5.jpg" alt=""> </div> </div> </div> <div class="col-lg-7 mt--30 mt-lg--30"> <div class="product-details-info pl-lg--30 "> <p class="tag-block">Tags: <a href="#">Movado</a>, <a href="#">Omega</a></p> <h3 class="product-title">Beats EP Wired On-Ear Headphone-Black</h3> <ul class="list-unstyled"> <li>Ex Tax: <span class="list-value"> £60.24</span></li> <li>Brands: <a href="#" class="list-value font-weight-bold"> Canon</a></li> <li>Product Code: <span class="list-value"> model1</span></li> <li>Reward Points: <span class="list-value"> 200</span></li> <li>Availability: <span class="list-value"> In Stock</span></li> </ul> <div class="price-block"> <span class="price-new">£73.79</span> <del class="price-old">£91.86</del> </div> <div class="rating-widget"> <div class="rating-block"> <span class="fas fa-star star_on"></span> <span class="fas fa-star star_on"></span> <span class="fas fa-star star_on"></span> <span class="fas fa-star star_on"></span> <span class="fas fa-star "></span> </div> <div class="review-widget"> <a href="#">(1 Reviews)</a> <span>|</span> <a href="#">Write a review</a> </div> </div> <article class="product-details-article"> <h4 class="sr-only">Product Summery</h4> <p>Long printed dress with thin adjustable straps. V-neckline and wiring under the Dust with ruffles at the bottom of the dress.</p> </article> <div class="add-to-cart-row"> <div class="count-input-block"> <span class="widget-label">Qty</span> <input type="number" class="form-control text-center" value="1"> </div> <div class="add-cart-btn"> <a href="#" class="btn btn-outlined--primary"><span class="plus-icon">+</span>Add to Cart</a> </div> </div> <div class="compare-wishlist-row"> <a href="#" class="add-link"><i class="fas fa-heart"></i>Add to Wish List</a> <a href="#" class="add-link"><i class="fas fa-random"></i>Add to Compare</a> </div> </div> </div> </div> </div> <div class="modal-footer"> <div class="widget-social-share"> <span class="widget-label">Share:</span> <div class="modal-social-share"> <a href="#" class="single-icon"><i class="fab fa-facebook-f"></i></a> <a href="#" class="single-icon"><i class="fab fa-twitter"></i></a> <a href="#" class="single-icon"><i class="fab fa-youtube"></i></a> <a href="#" class="single-icon"><i class="fab fa-google-plus-g"></i></a> </div> </div> </div> </div> </div> </div> </div> </main> </div> <!--================================= Brands Slider ===================================== --> <section class="section-margin dno"> <h2 class="sr-only">Brand Slider</h2> <div class="container"> <div class="brand-slider sb-slick-slider border-top border-bottom" data-slick-setting='{ "autoplay": true, "autoplaySpeed": 8000, "slidesToShow": 6 }' data-slick-responsive='[ {"breakpoint":992, "settings": {"slidesToShow": 4} }, {"breakpoint":768, "settings": {"slidesToShow": 3} }, {"breakpoint":575, "settings": {"slidesToShow": 3} }, {"breakpoint":480, "settings": {"slidesToShow": 2} }, {"breakpoint":320, "settings": {"slidesToShow": 1} } ]'> <div class="single-slide"> <img src="image/others/brand-1.jpg" alt=""> </div> <div class="single-slide"> <img src="image/others/brand-2.jpg" alt=""> </div> <div class="single-slide"> <img src="image/others/brand-3.jpg" alt=""> </div> <div class="single-slide"> <img src="image/others/brand-4.jpg" alt=""> </div> <div class="single-slide"> <img src="image/others/brand-5.jpg" alt=""> </div> <div class="single-slide"> <img src="image/others/brand-6.jpg" alt=""> </div> <div class="single-slide"> <img src="image/others/brand-1.jpg" alt=""> </div> <div class="single-slide"> <img src="image/others/brand-2.jpg" alt=""> </div> </div> </div> </section> <!--================================= Footer Area ===================================== --> <?php include'include/footer.php'; ?> <!-- Use Minified Plugins Version For Fast Page Load --> <script src="js/plugins.js"></script> <script src="js/ajax-mail.js"></script> <script src="js/custom.js"></script> </body> </html>