-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-order.php
110 lines (98 loc) · 2.97 KB
/
add-order.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
session_start();
if(empty($_SESSION['username'])){
header('location:login.php');
}elseif($_SESSION['level']!=1){
header('location:index-p.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./css/data-p_add_style.css">
<title>SMKlinik | Ordering</title>
</head>
<body>
<header>
<div class="container">
<div id="logo">
<img src="./img/ini_logo.png" alt="Logo">
<a href="index-a.php"><span class="hightlight">Klinik</span> Cahaya</a>
</div>
<div id="profil">
<img src="./img/pp.png" alt="Profil">
<h4>ADMIN</h4>
</div>
</div>
</header>
<section id="add-data">
<div class="container">
<div class="title">
<h2>Tambah Data</h2>
</div>
<div class="report">
<form class="add" action="" method="post">
<table>
<tr></tr>
<tr>
<td>No. Order</td>
<?php
include('connect.php');
$max = mysqli_query($connect,"SELECT MAX(no_order) AS max FROM tb_order");
$data = mysqli_fetch_array($max);
$kode = $data['max'];
$no = (int) substr($kode,7,7);
$no++;
$char = "ORD";
$kode = $char.sprintf("%07s",$no);
?>
<td><input type="text" name="no" value="<?php echo $kode ?>"></td>
</tr>
<tr>
<td>Tanggal Order [yyyy-mm-dd]</td>
<?php $tgl = date('Y-m-d') ?>
<td><input type="text" name="tgl" value="<?php echo $tgl?>"></td>
</tr>
<tr>
<td>Supplier</td>
<td>
<select class="jk" name="supplier">
<?php
include('connect.php');
$sql = mysqli_query($connect,"SELECT * FROM `tb_supplier`");
while ($data = mysqli_fetch_array($sql)){
?>
<option value="<?php echo $data['id_supplier']; ?>"> <?php echo $data['nama']; ?> </option>
<?php
}
?>
</select>
</td>
</tr>
</table>
<div class="button">
<input type="submit" name="addbutton" value="Tambah">
<a href="data_order-a.php"><button type="button" name="back">Kembali</button></a>
</div>
</form>
<?php
include('connect.php');
if(isset($_POST['addbutton'])){
$no = $_POST['no'];
$tgl = $_POST['tgl'];
$sup = $_POST['supplier'];
mysqli_query($connect,"INSERT INTO `tb_order`(`no_order`, `tgl_order`, `id_supplier`) VALUES ('$no','$tgl','$sup')");
header('location:data_order-a.php');
}
?>
</div>
</div>
</section>
<footer>
<div class="container">
<p>Klinik Cahaya || Copyright © 2019</p>
</div>
</footer>
</body>
</html>