-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbarang-ubah.php
81 lines (73 loc) · 2.68 KB
/
barang-ubah.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
include_once 'header.php';
$id = isset($_GET['id']) ? base64_decode($_GET['id']) : die('ERROR: missing ID.');
include_once 'includes/barang.inc.php';
$eks = new barang($db);
$dataKategori = $eks->readAllKategori();
$eks->ki = addslashes($id);
$eks->readOne();
if($_POST){
if (empty($_POST['kk'])) { ?>
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Gagal Ubah Data!</strong> Harap memilih kategori terlebih dahulu.
</div>
<?php } else {
$eks->kk = $_POST['kk'];
$eks->ni = $_POST['ni'];
$eks->hi = $_POST['hi'];
$eks->si = $_POST['si'];
if($eks->update()){
echo "<script>location.href='barang.php'</script>";
} else {
?>
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Gagal Ubah Data!</strong> Terjadi kesalahan, coba sekali lagi.
</div>
<?php
}
}
}
?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-8">
<div class="page-header">
<h5>Ubah Barang</h5>
</div>
<form method="post">
<div class="form-group">
<label for="ki">Kode Barang</label>
<input type="text" class="form-control" id="ki" name="ki" maxlength="6" value="<?php echo $eks->ki; ?>" readonly>
</div>
<div class="form-group">
<label for="ni">Nama Barang</label>
<input type="text" class="form-control" id="ni" name="ni" value="<?php echo $eks->ni; ?>">
</div>
<div class="form-group">
<select name="kk">
<option value="" selected>-- Pilih Kategori --</option>
<?php while ($raaw = $dataKategori->fetch(PDO::FETCH_ASSOC)) { ?>
<option value="<?=$raaw['kode_kategoriitem']?>"><?=$raaw['nama_kategoriitem']?></option>
<?php } ?>
</select>
</div>
<div class="form-group">
<label for="hi">Harga Barang</label>
<input type="number" class="form-control" id="hi" name="hi" value="<?php echo $eks->hi; ?>">
</div>
<div class="form-group">
<label for="si">Stok Barang</label>
<input type="text" class="form-control" id="si" name="si" value="<?php echo $eks->si; ?>">
</div>
<button type="submit" class="btn btn-primary">Ubah</button>
<button type="button" onclick="location.href='barang.php'" class="btn btn-success">Kembali</button>
</form>
</div>
<div class="col-xs-12 col-sm-12 col-md-4">
<?php include_once 'sidebar.php'; ?>
</div>
</div>
<?php
include_once 'footer.php';
?>