hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
grapelegacy.com
/
Upload FileeE
HOME
<?php ob_start(); include_once('config/config.php'); $nav = "product-list"; ?><!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>Products | 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 class="blog"><a href="#">Product</a></li> </ul> </div> <div class="page-title-heading"> <h2 class="title"><a href="#">PRODUCTS</a></h2> </div> </div> </div> </div> </div> </div> <!-- /.page-title --> <div class="main-shop-fullwidth-grid"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="filter-shop clearfix"> <ul> <li class="grid active"><a href="#"><i class="fa fa-th-large" aria-hidden="true"></i></a></li> <li class="list"><a href="#"><i class="fa fa-list" aria-hidden="true"></i></a></li> </ul> </div> </div> </div> </div> <section class="flat-products style3"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="product-content product-fourcolumn clearfix"> <ul class="product style2 isotope-product clearfix"> <?php $i = 0; $sql_select = "Select * from product where status ='1' order by id desc"; $users_select = mysqli_query($conn, $sql_select); while ($res_select = mysqli_fetch_array($users_select)) { $i++; ?> <li class="product-item"> <div class="product-thumb clearfix"> <a href="product-detail.php?DID=<?php echo $res_select['id']; ?>" class="product-thumb"> <img src="upload/product/<?php echo $res_select['img']; ?>" alt="<?php echo $res_select['title']; ?>" style="width:auto;height:200px;"> </a> </div> <div class="product-info text-center clearfix"> <span class="product-title"><?php echo $res_select['title']; ?></span> <div class="product-content"> <span><?php echo custom_echo($res_select['description'],200); ?></span> </div> <div class="elm-btn"> <a href="product-detail.php?DID=<?php echo $res_select['id']; ?>" class="themesflat-button outline ol-accent margin-top-40 hvr-shutter-out-horizontal">VIEW DETAIL</a> </div> </div> </li> <!-- /product-item --> <?php } ?> </ul> </div> </div> </div> <!-- /row --> </div> <!-- /container--> </section> </div> <!-- / main-shop-fullwidth-grid --> <?php include('include/footer.php'); ?> <script src="javascript/jquery.min.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/jquery-waypoints.js"></script> <script src="javascript/jquery.easing.js"></script> <script src="javascript/main.js"></script> </body> </html>