-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
50 lines (42 loc) · 1.22 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
//error_reporting(E_ALL ^ (E_NOTICE | E_WARNING));
session_start();
include 'date.php';
include 'koneksi.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>MarketPlace</title>
<link rel="stylesheet" type="text/css" href="admin/assets/css/bootstrap.css">
</head>
<body>
<!-- navbar -->
<?php include 'navbar.php'; ?>
<!-- konten -->
<section class="konten">
<div class="container">
<h1>Welcome <!-- <span style="color: red;"><?php //echo $_SESSION["pelanggan"]['nama_pelanggan'];
?></span> --></h1>
<div class="row">
<?php $ambil = $koneksi->query("SELECT * FROM produk"); ?>
<?php while ($perproduk = $ambil->fetch_assoc())
{ ?>
<div class="col-md-3">
<div class="thumbnail">
<img src="foto_produk/<?php echo $perproduk['foto_produk']; ?>" alt="BLΛƆKPIИK">
<div class="caption">
<h4><?php echo $perproduk['nama_produk']; ?></h4>
<h5>Rp<?php echo number_format($perproduk['harga_produk']); ?></h5>
<a href="beli.php?id=<?php echo $perproduk['id_produk']; ?>" class="btn btn-primary">Beli</a>
<a href="detail.php?id=<?php echo $perproduk['id_produk']; ?>" class="btn btn-default"> Detail</a>
</div>
</div>
</div>
<?php
} ?>
</div>
</div>
</section>
</body>
</html>