-
Notifications
You must be signed in to change notification settings - Fork 1
/
nilai-ubah.php
executable file
·55 lines (47 loc) · 1.56 KB
/
nilai-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
<?php
include_once 'header.php';
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: missing ID.');
include_once 'includes/nilai.inc.php';
$eks = new Nilai($db);
$eks->id = $id;
$eks->readOne();
if($_POST){
$eks->kt = $_POST['kt'];
$eks->jm = $_POST['jm'];
if($eks->update()){
echo "<script>location.href='nilai.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 Nilai Preferensi</h5>
</div>
<form method="post">
<div class="form-group">
<label for="kt">Keterangan Nilai</label>
<input type="text" class="form-control" id="kt" name="kt" value="<?php echo $eks->kt; ?>">
</div>
<div class="form-group">
<label for="jm">Jumlah Nilai</label>
<input type="text" class="form-control" id="jm" name="jm" value="<?php echo $eks->jm; ?>">
</div>
<button type="submit" class="btn btn-primary">Ubah</button>
<button type="button" onclick="location.href='nilai.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';
?>