-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarang-show.php
56 lines (43 loc) · 1.14 KB
/
barang-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
47
48
49
50
51
52
53
54
55
56
<?php
$title = 'Lihat Barang';
require_once "template/theHeader.php";
?>
<div class="level">
<div class="level-left">
<div class="level-item">
<h1 class="title is-4">Lihat Barang</h1>
</div>
</div>
<div class="level-right">
<div class="level-item">
<a href="barang-edit.php?id=<?= $_GET['id'] ?>" class="button is-light">Edit</a>
</div>
<div class="level-item">
<a href="barang.php" class="button is-light">Kembali</a>
</div>
</div>
</div>
<hr>
<?php
if (isset($_GET['id'])) {
$query = $conn->query(sprintf("SELECT * FROM barang WHERE id_barang = %s", $_GET['id']));
$item = $query->fetch_object();
} else {
return header('Location:barang.php');
}
?>
<div class="field">
<label class="label">Nama Barang</label>
<pre><?= $item->nama_barang; ?></pre>
</div>
<div class="field">
<label class="label">Harga</label>
<pre><?= money($item->harga_barang); ?></pre>
</div>
<div class="field">
<label class="label">Stok</label>
<pre><?= kilo($item->stok_barang); ?></pre>
</div>
<?php
require_once "template/theFooter.php"
?>