GIF89a php
Current File : /home/hencockfreshchic/public_html/app/search.php
<?php
ob_start();
ini_set('error_reporting', E_STRICT);
include("session.php");
include("connect.php");
include("libs.php");
mysqli_set_charset($conn,'utf8');
date_default_timezone_set('Asia/Kolkata');
setOnline($conn,$_COOKIE["user_id"]);
?>
<!DOCTYPE html>
<html>

<?php include'head.php'; ?>
<body>
<?php include'header.php'; ?>
 <div onclick="closeNav()">
  <div class="container no-gutters">
    <div class="row row-spac no-gutters">
       <div class="col-md-5 no-gutters" style="margin: auto;padding: 0px;">
        <div class="container m-0 p-0">
          <div class="row my-1">
            <div class="form-group my-1">
              <input type="text" class="form-control py-2" name="search" placeholder="Search here for atta, dal, coke...">
            </div>
          </div>
        </div>
       </div>
     </div>
     <div class="row row-spac no-gutters my-2">
       <div class="col-md-5 no-gutters" style="margin: auto;padding: 0px;">
         <h6 class="mx-2"><i class="bi bi-box-arrow-in-up-right text-dark"></i> Trending</h6>
          <div class="container no-gutters">
            <div class="row row-spac no-gutters">
             <div class="col-3">
               <figure class="figure">
                 <img src="assest/images/product/img-1.png" class="figure-img img-fluid">
                 <figcaption class="fig-caption text-center"> <small>Name</small> </figcaption>
               </figure>
             </div>
             <div class="col-3">
               <figure class="figure">
                 <img src="assest/images/product/img-1.png" class="figure-img img-fluid">
                 <figcaption class="fig-caption text-center"> <small>Name</small> </figcaption>
               </figure>
             </div>
             <div class="col-3">
               <figure class="figure">
                 <img src="assest/images/product/img-1.png" class="figure-img img-fluid">
                 <figcaption class="fig-caption text-center"> <small>Name</small> </figcaption>
               </figure>
             </div>
             <div class="col-3">
               <figure class="figure">
                 <img src="assest/images/product/img-1.png" class="figure-img img-fluid">
                 <figcaption class="fig-caption text-center"> <small>Name</small> </figcaption>
               </figure>
             </div>
           </div>
          </div>
       </div>
     </div>

   </div> 
  </div>
<?php include 'footer.php';?>

  <script>
function openNav() {
  document.getElementById("mySidebar").style.width = "250px";
  document.getElementById("main").style.marginLeft = "250px";
}

function closeNav() {
  document.getElementById("mySidebar").style.width = "0";
  document.getElementById("main").style.marginLeft= "0";
}
</script>
</body>
</html>


<div id="snackbar"><span id="snack_msgg" style="color: white"></span></div>