]]jkjjgdjffksdkdxmnvbcbcvbvcbbbbbbbbbvcbcbvcbmnmbnwqeqwewqskfgj
במ12[cvbnvbnvcvbcvbcvbvvvccccccccccccccvbcvbcvbnmnmqewv;'
/
home
/
u729855735
/
domains
/
stylebyou.com
/
public_html
/
Upload FileeE
HOME
<?php require('inc/header.php'); if(isset($_GET['query'])){ $str = $_GET['query']; $prd = "SELECT * FROM product WHERE status=1 AND pr_nm LIKE '%$str%'"; $run = mysqli_query($conn, $prd); $cnt = mysqli_num_rows($run); } else{ echo '<script>location.href="index.php";</script>'; } ?> <main class="main"> <div class="page-header text-center" style="background-image: url('assets/images/page-header-bg.jpg')"> <div class="container"> <h1 class="page-title">Search result for: <?php echo $str;?></h1> </div> </div> <nav aria-label="breadcrumb" class="breadcrumb-nav mb-2"> <div class="container"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index.php">Home</a></li> <li class="breadcrumb-item"><a href="#">search result</a></li> </ol> </div> </nav> <div class="page-content"> <div class="container"> <div class="toolbox"> <div class="toolbox-center"> <div class="toolbox-info"> Showing <span><?php echo $cnt;?></span> Products </div> </div> <div class="toolbox-right"> <!--<div class="toolbox-sort"> <label for="sortby">Sort by:</label> <div class="select-custom"> <select name="sortby" id="sortby" class="form-control"> <option value="popularity" selected="selected">Most Popular</option> <option value="rating">Most Rated</option> <option value="date">Date</option> </select> </div> </div>--> </div> </div> <div class="products"> <div class="row"> <?php if($cnt > 0){ while($rw = mysqli_fetch_assoc($run)){ ?> <div class="col-6 col-md-4 col-lg-4 col-xl-3"> <div class="product"> <figure class="product-media"> <?php if($rw['tag'] != ''){ ?> <span class="product-label label-new"><?php echo $rw['tag'];?></span> <?php } ?> <a href="product-details.php?sku=<?php echo $rw['sku'];?>"> <img src="admin/uploads/<?php echo $rw['pr_img'];?>" alt="Product image" class="product-image"> </a> <div class="product-action-vertical"> <a href="javascript:void(0)" class="btn-product-icon btn-quickview" data-product-id="<?php echo $rw['sku'];?>"></a> </div><!-- End .product-action --> <?php if($rw['prd_type'] == 'affiliate'){ ?> <div class="product-action"> <a href="<?php echo $rw['affiliate_link']?>" class="btn-product btn-cart"><span>Buy on Amazon</span></a> </div> <?php } else{?> <div class="product-action"> <a href="javascript:void(0)" class="btn-product btn-cart"><span>Not available</span></a> </div> <?php } ?> </figure> <div class="product-body"> <div class="product-cat"> <a href="#"><?php echo $rw['pr_Cat'];?></a> </div><!-- End .product-cat --> <h3 class="product-title"><a style="font-size:13px;display:inline-block;width:400px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" href="product-details.php?sku=<?php echo $rw['sku'];?>"><?php echo $rw['pr_nm'];?></a></h3><!-- End .product-title --> <div class="product-price"> $50.00 </div><!-- End .product-price --> </div><!-- End .product-body --> </div><!-- End .product --> </div> <?php } } else{ echo "No product here.";}?> </div><!-- End .row --> <?php if($cnt > 0){ ?> <div class="load-more-container text-center"> <a href="javascript:void(0)" class="btn btn-outline-darker btn-load-more">More Products <i class="icon-refresh"></i></a> </div> <?php } ?> </div><!-- End .products --> </div><!-- End .container --> </div><!-- End .page-content --> </main><!-- End .main --> <?php require('inc/footer.php'); ?>