-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit_menu.php
133 lines (107 loc) · 4.39 KB
/
edit_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
<?php
include ('conn.php');
session_start();
if($_SESSION["Username"]=="") // ตรวจสอบว่าผ่านการ login หรือไม่
{
header('location:login.php');
exit();
}
include 'header.php';
?>
<br>
<div class="container">
<div class="jumbotron">
<!DOCTYPE HTML>
<html>
<head>
<body>
<form method="post" action="#" >
<table>
<?php
$flag=0;
if(isset($_POST['submit'])){
$idfood = $_POST['menu_id'];
$name = $_POST['menu_name'];
$id = $_GET['id'];
@include('conn.php');
$strSQL = "SELECT * FROM menu WHERE menu_id <> '$id'";
$objQuery = mysql_query($strSQL, $connect1);
while ($objReSult = mysql_fetch_array($objQuery)) {
$gname= $objReSult["menu_name"];
if($gname==$name){
$flag=1;
}
}
if($flag==0){
$insert = "UPDATE menu SET menu_name='".$name."',id_type='".$_POST['store']."' WHERE menu_id='".$id."'";
$result = mysql_query($insert, $connect1);
echo " <script>
location='insert_menu.php';
</script>";
if(!$result){
die('ไม่สามารแก้ไขข้อมูลได้ เกิดข้อผิดพลาดบางประการ'.mysql_error());
}
}
}
?>
<p align="left">แก้ไขข้อมูลเมนูอาหาร</p>
<div class="modal-body">
<input type='hidden' name='id' value='<? echo $sql['id'];?>'>
<h4> รหัสเมนูอาหาร : <input type='text' name ='menu_id' required value='<? echo $_GET['id'];?>' readonly></td></tr>
</h4>
<h4> ชื่อเมนูอาหาร : <input type='text' name ='menu_name' required value='<? echo $_GET['id2'];?>' onKeyUp="if(!(isNaN(this.value))) { alert('กรุณากรอกอักษร'); this.value='';}"></td></tr><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";
$objQuery = mysql_query($strSQL, $connect1);
while ($objReSult = mysql_fetch_array($objQuery)) {
?>
<option value="<? echo $objReSult["id_type"];?>" <? if($_GET['id3']==$objReSult['id_type']){echo "selected";} ?> > <? echo $objReSult["type_name"];?></option>
<?
}
?>
</select><font color="red"> *</font>
</h4>
</div>
</div>
</table><br>
<div class="modal-footer">
<input type="submit" class="btn btn-success" name="submit" value="แก้ไขข้อมูล" onclick="return confirm('ต้องการแก้ไขข้อมูลนี้?')">
<a href="insert_menu.php"><button type="button" class="btn btn-danger" data-dismiss="modal" onclick="return confirm('ต้องการยกเลิกการแก้ไข?')">ยกเลิก</button>
</a>
</div>
</div>
</form>
<?php
@include('conn.php');
$strSQL = "SELECT * FROM menu a join type_food b on a.id_type = b.id_type order by menu_id";
$objQuery = mysql_query($strSQL,$connect1) or die("Error Query [".$strSQL."]");
?>
<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><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>
</tr>
<?
}
?>
</body>
</html>
<!--<div class="modal-footer">
<input type="submit" onclick="submitModal()" name="submit" class="btn btn-success" value = "ตกลง">
<button type="button" class="btn btn-danger" data-dismiss="modal">ยกเลิก</button>
</div>-->