-
Notifications
You must be signed in to change notification settings - Fork 0
/
show.php
46 lines (42 loc) · 1.31 KB
/
show.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Data produk</h1>
<table border="1">
<thead>
<tr>
<th>#</th>
<th>Nama produk</th>
<th>harga</th>
<th>gambar produk</th>
<th>Opsi</th>
</tr>
</thead>
<tbody>
<?php
require './config/db.php';
$products = mysqli_query($db_connect,"SELECT * FROM products");
$no = 1;
while($row = mysqli_fetch_assoc($products)) {
?>
<tr>
<td><?=$no++;?></td>
<td><?=$row['name'];?></td>
<td><?=$row['price'];?></td>
<!-- <td><img src="<?=$row['image'];?>" width="100"></td> -->
<td><a href="<?=$row['image'];?>" target="_blank">unduh</a></td>
<td>
<a href="edit.php?id=<?=$row['id'];?>">Edit</a>
<a href="delete.php?id=<?=$row['id'];?>">Hapus</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</body>
</html>