D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
G:
/
PleskVhosts
/
jhalakdembla.com
/
akkonlineservices.com
/
Filename :
AllProduct.php
back
Copy
<?php $title="AKK Online Services | Herbal Products | Ayurvedic Products | D-Addiction Drop | Cough Syurp | Sapt Tulsi | AKK LIFE 60 CAPSULES"; include('layout/header.php'); require('Admin/Coding/db.php'); ?> <?php $queryy = "SELECT * FROM `product` "; $resultt = mysqli_query($conn,$queryy); // $rows = mysqli_fetch_assoc($resultt); $rowcount= mysqli_num_rows($resultt); if ($rowcount > 0) { ?> <section class="featured spad"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="section-title"> <h2>All Products</h2> </div> </div> </div> <div class="row featured__filter"> <?php while($rows = mysqli_fetch_assoc($resultt)){ ?> <div class="col-lg-3 col-md-4 col-sm-6 mix oranges fresh-meat"> <div class="featured__item"> <a href="shop-details.php?id=<?php echo $rows['id'];?>"> <div class="featured__item__pic set-bg" data-setbg="Admin/img/Productimg/<?php echo $rows['Image1'];?>"> <!-- <ul class="featured__item__pic__hover"> <li><a href="#"><i class="fa fa-heart"></i></a></li> <li><a href="#"><i class="fa fa-retweet"></i></a></li> <li><a href="#"><i class="fa fa-shopping-cart"></i></a></li> </ul> --> </div> </a> <div class="featured__item__text"> <h6><a href="ViewFeatured.php?id=<?php echo $rows['id']; ?>"><?php echo $rows['Title'];?></a></h6> <span class="LineThrough">MRP-<?php echo $rows['Price'];?> </span><br/><h5>₹ <?php echo $rows['Price'];?></h5> </div> <div style=" text-align: center; margin-top: 10px;"> <a href="inquire.php?id=<?php echo $rows['id']; ?>" class="btn" style="background-color:yellowgreen; color:white;">Inquire</a> </div> </div> </div> <?php } ?> </div> </div> </section> <?php } include('layout/footer.php'); ?>