forked from rrifafauzikomara/SPK-AHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata-kriteria-ubah.php
54 lines (49 loc) · 1.45 KB
/
data-kriteria-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
<?php
include_once('includes/header.inc.php');
include_once('includes/nilai.inc.php');
$pgn = new Nilai($db);
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: missing ID.');
include_once('includes/kriteria.inc.php');
$eks = new Kriteria($db);
$eks->id = $id;
$eks->readOne();
if($_POST){
$eks->nm = $_POST['nm'];
if($eks->update()){
echo "<script>location.href='data-kriteria.php'</script>";
} else{ ?>
<script type="text/javascript">
window.onload=function(){
showStickyErrorToast();
};
</script> <?php
}
}
?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12">
<ol class="breadcrumb">
<li><a href="index.php">Beranda</a></li>
<li><a href="data-kriteria.php">Data Kriteria</a></li>
<li class="active">Ubah Data</li>
</ol>
<p style="margin-bottom:10px;">
<strong style="font-size:18pt;"><span class="fa fa-pencil"></span> Ubah Kriteria</strong>
</p>
<div class="panel panel-default">
<div class="panel-body">
<form method="post">
<div class="form-group">
<label for="kt">Nama Kriteria</label>
<input type="text" class="form-control" id="nm" name="nm" value="<?php echo $eks->nm; ?>">
</div>
<div class="btn-group">
<button type="submit" class="btn btn-dark">Ubah</button>
<button type="button" onclick="location.href='data-kriteria.php'" class="btn btn-default">Kembali</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php include_once('includes/footer.inc.php'); ?>