Current Path : /var/www/vhosts/thaisoho.com/httpdocs/
Upload File :
Current File : /var/www/vhosts/thaisoho.com/httpdocs/hilight_details.php

<?php include '_header.php'; ?>
<style>
.card-body {
    /* -ms-flex: 1 1 auto;
    flex: 1 1 auto; */
    min-height: 1px;
    display: grid;
    padding: 0.25rem;
}
.stars{
  color: #ffa500;
}
.container {
  background: black;
}
body{
  background-color: #0e0e0e !important;
}
</style>
<div class="product-h1 p-3" style="min-height: 1154px;">
  <h1 class="text-left mt-2 mb-0 ml-5" style="color: #dc960f;"></h1>
  <header class="header-line position-relative d-flex mb-4">
        <h3 class="pr-3" style="background: black; z-index: 10;">
          <span class="text-responsive" style="color:#dc960f;">THAISOHO HILIGHT</span>
          <div class="text-right" style="color: #dc960f; font-size: 16px;">Recommaned product</div>
        </h3>
  </header>
  <?php
  $id = $_GET['id'];
  $query_product = mysqli_query($dbc , "SELECT * FROM product WHERE id = '$id'");
  $result = mysqli_fetch_assoc($query_product); ?>
   ?>
  <div class="row justify-content-center m-0" style="">
    <div class="col-sm-12 col-lg-4">
      <img src="Admin/uploads/<?=$result['picture']?>" class="w-100">
    </div>
    <div class="col-sm-12 text-white col-lg-8">
      <h2 class="mb-3"><?=$result['product']?></h2>
      <p>Product details</p>
      <div>
        <?=$result['details']?>
      </div>
    </div>
  </div>
</div>
</div>
<?php include '_footer.php'; ?>

  </body>
</html>