Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <!-- Products -->
  2. <ul class="products">
  3. <?php foreach($produk as $p) : ?>
  4. <li class="product first">
  5. <a href="<?= base_url('produk/viewproduk/' . $p['id']) ?>">
  6. <img src="<?= base_url('files/gambar/produk/' . $p['gambar']) ?>" alt="Divit">
  7. <h3><?= $p['nama_produk'] ?></h3>
  8. <span class="price">
  9. <span><span>Rp </span><?= number_format($p['harga']) ?></span>
  10. </span>
  11. </a>
  12. <a href="<?= base_url('produk/viewproduk/' . $p['id']) ?>" class="cs-btn">Lihat Produk</a>
  13. </li>
  14. <?php endforeach; ?>
  15. </ul><!-- end .products -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement