Advertisement
BillGun

Untitled

Jul 27th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <?php
  2. include('connection.php');
  3. $product = mysqli_query("select * from produk");
  4. $id = $product['id'];
  5.  
  6. ?>
  7. <div class="product-one">
  8. <?php while($item=mysqli_fetch_array($product)){?>
  9. <div class="col-md-4 product-left p-left">
  10. <div class="product-main simpleCart_shelfItem">
  11. <a href="single.html" class="mask"><img class="img-responsive zoom-img" src="images/p-1.png" alt="" /></a>
  12. <div class="product-bottom">
  13. <h3><?php echo $item['nama']; ?></h3>
  14. <p>Explore Now</p>
  15. <h4><a class="item_add" href="#"><i></i></a>
  16. <span class=" item_price">Rp <?php echo $item['harga']?>,-</span></h4>
  17. </div>
  18. <div class="srch srch1">
  19. <span>New</span>
  20. </div>
  21. </div>
  22. </div>
  23. <?php
  24. }
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement