-
Notifications
You must be signed in to change notification settings - Fork 1
/
insert_menu.php
213 lines (180 loc) · 8.28 KB
/
insert_menu.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
include ('conn.php');
session_start();
if($_SESSION["Username"]=="") // ตรวจสอบว่าผ่านการ login หรือไม่
{
header('location:login.php');
exit();
}
include 'header.php';
?>
<div class="container">
<div class="jumbotron">
<!--<h1><font face ="JasmineUPC">โรงพยาบาลเจ้าพระยาอภัยภูเบศร</font></h1>-->
<br>
<p>ข้อมูลเมนูอาหาร</p>
<?php
$flag=0;
if(isset($_POST['submit'])){
$perpage = 20;
if (isset($_GET['page']) && $_GET['page'] != 0) {
$page = $_GET['page'];
} else {
$page = 1;
}
$start = ($page - 1) * $perpage;
$strSQL = "SELECT * FROM menu LIMIT {$start},{$perpage}";
$objQuery = mysql_query($strSQL, $connect1);
while ($objReSult = mysql_fetch_array($objQuery)) {
$gname= $objReSult["menu_name"];
if($gname==$_POST['name_menu']){
$flag=1;
}
}
if($flag==0){
$insert_food = "INSERT INTO menu (menu_id,menu_name,id_type) VALUES ('".$_POST['id_menu']."','".$_POST['name_menu']."','".$_POST['store']."')";
$query = mysql_query($insert_food,$connect1);
echo( "<script> alert('เพิ่มข้อมูลสำเร็จ');
window.location='insert_menu.php';</script>");
if(!$insert){
echo( "<script> alert('ไม่สามารถเพิ่มข้อมูลได้ เกิดข้อผิิดพลาดบางประการ');
window.location='insert_menu.php';</script>");
}
}
}
$perpage = 20;
if (isset($_GET['page']) && $_GET['page'] != 0) {
$page = $_GET['page'];
} else {
$page = 1;
}
$start = ($page - 1) * $perpage;
$strSQL = "SELECT MAX(menu_id) FROM menu LIMIT {$start},{$perpage}";
$objQuery = mysql_query($strSQL, $connect1);
while ($objReSult = mysql_fetch_array($objQuery)) {
$result= $objReSult["MAX(menu_id)"];
$ina="";
for($a=0;$a<Strlen($result);$a++){
if($a>=2)$ina =$ina.intval($result[$a]) ;
}
$id= "MN-".sprintf("%04d", $ina+1);
}
?>
<div class="modal-body">
<form method="POST" action="#" onsubmit="return confirm('ต้องการเพิ่มข้อมูลนี้?');">
<h4> รหัสเมนูอาหาร : <input type="text" name="id_menu" placeholder="name" value="<?php echo $id; ?>" readonly=""></h4>
<h4> ชื่อเมนูอาหาร : <input type="text" name="name_menu" required oninvalid="this.setCustomValidity('กรุณากรอกข้อมูล')" onKeyUp="if(!(isNaN(this.value))) { alert('กรุณากรอกอักษร'); this.value='';}"><font color="red"> *</font><?php if($flag==1)echo "<font color=red>ชื่อนี้มีในระบบแล้ว</font>"; ?></h4>
<h4> ประเภทอาหาร :
<select name = "store" required>
<option value="" disabled selected>------กรุณาเลือกประเภทอาหาร-----</option>
<?
@include('conn.php');
$strSQL = "SELECT * FROM type_food ORDER BY type_name";
$objQuery = mysql_query($strSQL, $connect1);
while ($objReSult = mysql_fetch_array($objQuery)) {
?>
<option value="<? echo $objReSult["id_type"];?>" <? echo $sel; ?> > <? echo $objReSult["type_name"];?></option>
<?
}
?>
</select><font color="red"> *</font>
</h4>
<div class="modal-footer">
<input type="submit" class="btn btn-success" value="เพิ่มข้อมูล" name = "submit"
>
<a href="matandunit.php"><button type="button" class="btn btn-danger" data-dismiss="modal" onclick="return confirm('ต้องการยกเลิกการเพิ่มข้อมูลนี้?')">ยกเลิก</button></a>
</form>
</div>
</div>
</div>
<form method="post" action="#" class="text-right">
<font color=white> ค้นหาจากชื่อเมนูอาหาร : </font></label> <input type="text" name="sen" >
<!--<input type="hidden" name="selected_text" id="selected_text" value="" />-->
<input type="submit" class="btn btn-success" name="submit2" value="ค้นหา">
</form>
<?php
@include('conn.php');
$see=$_POST["sen"];
$strSQL = "SELECT * FROM menu a join type_food b on a.id_type=b.id_type where menu_name like '%$see%' order by menu_id";
$objQuery = mysql_query($strSQL,$connect1) or die("Error Query [".$strSQL."]");
$num=mysql_num_rows($objQuery);
if($num==0){
echo"<script language=\"JavaScript\">";
echo"alert('ไม่พบข้อมูล')";
echo"</script>";
echo( "<script>window.location='insert_menu.php';</script>");
}
?>
<br>
<table class="table table-striped table-bordered">
<tr class="warning">
<th><div align="center">รหัสเมนูอาหาร</div></th>
<th><div align="center">ชื่อเมนูอาหาร</div></th>
<th><div align="center">ประเภทอาหาร</div></th>
<th width="100"><div align="center">แก้ไขข้อมูล</div></th>
<th width="100"><div align="center">ลบข้อมูล</div></th>
</tr>
<?
while ($objReSult = mysql_fetch_array($objQuery)) {
# code...
?>
<tr class ="info">
<td><div align = "center"><?php echo $objReSult["menu_id"];?></div></td>
<td><div align = "left"><? echo $objReSult["menu_name"];?></div></td>
<td><div align = "left"><? echo $objReSult["type_name"];?></div></td>
<td><div align = "center"><a href='edit_menu.php?id=<? echo $objReSult['menu_id'];?>&id2=<? echo $objReSult['menu_name'];?>&id3=<? echo $objReSult['id_type'];?>' onclick="return confirm('ต้องการแก้ไขข้อมูลนี้?')"><b><font color="blue"><img src='img/edit.png' width=25></font></b></a></td>
<td><div align = "center"><a href='delete_menu.php?id=<? echo $objReSult['menu_id']?>'
onclick="return confirm('ยืนยันการลบข้อมูล')"><b><font color="red"><img src='img/delete.png' width=25></font></b></a></td>
</tr>
<?
}
?>
</table>
</div>
<?php
$sql2 = "SELECT * FROM menu";
$query2 = mysql_query($sql2, $connect1);
$total_record = mysql_num_rows($query2);
$total_page = ceil($total_record / $perpage);
?>
<nav align="center" aria-label="Page navigation example">
<ul class="pagination">
<li class="page-item"><a class="page-link" href="insert_menu.php?page=<?php echo ($page-1); ?>" aria-label="Previous"><span aria-hidden="true"><<</span></a></li>
<?php for($i=1;$i<=$total_page;$i++){ ?>
<li><a href="insert_menu.php?page=<?php echo $i; ?>"><?php echo $i; ?></a></li>
<?php } ?>
<li class="page-item"><a class="page-link" href="insert_menu.php?page=<?php echo ($page+1); ?>" aria-label="Next"><span aria-hidden="true">>></span></a></li>
</ul>
</nav>
<footer class="text-center">
<a class="up-arrow" href="#myPage" data-toggle="tooltip" title="TO TOP">
<span class="glyphicon glyphicon-chevron-up"></span>
</a><br><br>
<p>จัดทำโดย <a href="http://www.cpa.go.th" data-toggle="tooltip">นายนนธวัฒน์ จันทร์กระจ่าง</a></p>
</footer>
<script>
$(document).ready(function(){
// Initialize Tooltip
$('[data-toggle="tooltip"]').tooltip();
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, footer a[href='#myPage']").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
})
</script>
</body>
</html>