-
Notifications
You must be signed in to change notification settings - Fork 1
/
alternatif-baru.php
executable file
·57 lines (51 loc) · 1.72 KB
/
alternatif-baru.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
<?php
include_once 'header.php';
if($_POST){
include_once 'includes/alternatif.inc.php';
$eks = new Alternatif($db);
// $eks->kt = $_POST['kt'];
$eks->id = $_POST['id'];
$eks->nm = $_POST['nm'];
if($eks->insert()){
?>
<div class="alert alert-success alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Berhasil Tambah Data!</strong> Tambah lagi atau <a href="alternatif.php">lihat semua data</a>.
</div>
<?php
}
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 Tambah 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>Tambah Alternatif</h5>
</div>
<form method="post">
<div class="form-group">
<label for="kt">ID Alternative</label>
<input type="text" class="form-control" id="id" name="id" required>
</div>
<div class="form-group">
<label for="kt">Nama Alternatif</label>
<input type="text" class="form-control" id="nm" name="nm" required>
</div>
<button type="submit" class="btn btn-primary">Simpan</button>
<button type="button" onclick="location.href='alternatif.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';
?>