-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.php
194 lines (154 loc) · 7.21 KB
/
user.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
<?php include("inc_connect.php");?>
<?php if($_SESSION["LOGIN_OK"]!=true || $_SESSION["LOGIN_LEVEL"]!=1) { alert("คุณไม่มีสิทธิในการใช้งานเมนูนี้","main.php"); } ?>
<?php
if($_GET["user_id"]!="" && $_GET["action"]=="del") {
$SQL = "delete from tb_user where user_id='".$_GET["user_id"]."' and user_id<>1";
mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
// alert("ลบข้อมูลเสร็จเรียบร้อยแล้ว","user.php");
} elseif($_GET["user_id"]!="" && $_GET["action"]!="") {
$SQL = "update tb_user set confirm='".(($_GET["action"]==1)?"0":"1")."' where user_id='".$_GET["user_id"]."' ";
#print $SQL;
mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
// alert("เปลี่ยนสถานะเสร็จเรียบร้อยแล้ว","user.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ระบบซื้อขายสินค้า">
<meta name="author" content="zues.com">
<meta name="keywords" content="ระบบซื้อขายสินค้า">
<title>ระบบซื้อขายสินค้า</title>
<link rel="shortcut icon" href="images/zues.jpg">
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="dist/css/offcanvas.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="assets/js/ie-emulation-modes-warning.js"></script>
<link href="vendor/datatables-plugins/dataTables.bootstrap.css" rel="stylesheet">
<link href="vendor/datatables-responsive/dataTables.responsive.css" rel="stylesheet">
<link href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php include("inc_menu.php"); ?>
<div class="container">
<?php include("inc_user.php"); ?>
<div class="col-xs-12">
<h4><span class="label label-primary"><i class="glyphicon glyphicon-user"></i> ข้อมูลผู้ใช้งาน</span>
<a href="user-form.php?user_id=0" class="btn btn-success btn-xs" role="button"><i class="glyphicon glyphicon-star"></i> สร้างผู้ใช้งานใหม่</a>
</h4>
<table class="table table-bordered" id="data-tb">
<thead>
<tr align="center">
<td>#</td>
<td align="left"><strong>ชื่อ-นามสกุล</strong></td>
<td align="center"><strong>เลขบัตร ปปช.</strong></td>
<td align="left"><strong>ที่อยู่</strong></td>
<td align="left"><strong>เบอร์โทรศัพท์</strong></td>
<td align="left"><strong>อีเมล</strong></td>
<td align="center"><strong>ระดับ</strong></td>
<td><strong>เมนู</strong></td>
</tr>
</thead>
<tbody>
<?php
$SQL = "select * from tb_user order by name ";
$result = mysqli_query($mysqli, $SQL) or die(mysqli_error($mysqli).$SQL);
$i = 0;
while($tmp = mysqli_fetch_array($result)) {
$i++;
?>
<tr align="center" <?php print ($tmp["confirm"]==0)?"style='background-color: #d7d7d7'":""?>>
<td><?php print $i?></td>
<td align="left"><?php print $tmp["name"]?></td>
<td align="center"><?php print $tmp["idcard"]?></td>
<td align="left"><?php print $tmp["address"]?></td>
<td align="left"><?php print $tmp["phone"]?></td>
<td align="left"><?php print $tmp["email"]?></td>
<td align="left"><?php print ($tmp["level"]==1)?"Admin":"Sale"?></td>
<td nowrap>
<a href="user-form.php?user_id=<?php print $tmp["user_id"]?>" class="btn btn-default btn-xs" role="button"><i class="glyphicon glyphicon-pencil"></i></a>
<a href="?user_id=<?php print $tmp["user_id"]?>&action=del" class="btn btn-warning btn-xs" onclick="return del();" role="button"><i class="glyphicon glyphicon-trash"></i></a>
<a href="?user_id=<?php print $tmp["user_id"]?>&action=<?php print $tmp["confirm"]?>" class="btn btn-<?php print ($tmp["confirm"]==1)?"success":"danger"?> btn-xs" onclick="return active(<?php print $tmp["confirm"]?>);" role="button"><i class="glyphicon glyphicon-<?php print ($tmp["confirm"]==1)?"ok":"remove"?>"></i></a>
</td>
</tr>
<?php } ?>
</tbody>
<tfoot>
<tr align="center">
<td>#</td>
<td>ชื่อ-นามสกุล</td>
<td>เลขบัตร ปปช.</td>
<td>ที่อยู่</td>
<td>เบอร์โทรศัพท์</td>
<td>อีเมล</td>
<td>ระดับ</td>
<td>เมนู</td>
</tr>
</tfoot>
</table>
</div>
<?php include("inc_footer.php"); ?>
</div><!--/.container-->
<?php include("inc_footerpage.php"); ?>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
<!-- DataTables JavaScript -->
<script src="vendor/datatables/js/jquery.dataTables.min.js"></script>
<script src="vendor/datatables-plugins/dataTables.bootstrap.min.js"></script>
<script src="vendor/datatables-responsive/dataTables.responsive.js"></script>
<script>
$(document).ready(function() {
var table = $('#data-tb').DataTable(
{
width : "100%",
autoWidth : true,
"dom": '<"pull-left"f><"pull-right"l>tip'
});
});
$('#data-tb').on('search.dt', function() {
var value = $('.dataTables_filter input').val();
});
function del() {
if(confirm("คุณต้องการลบรายการนี้หรือไม่?")) {
return true;
} else {
return false;
}
}
function active(s) {
if(s==1) {
if(confirm("คุณต้องการระงับการใช้งานหรือไม่?")) {
return true;
} else {
return false;
}
} else {
if(confirm("คุณต้องการให้ใช้งานหรือไม่?")) {
return true;
} else {
return false;
}
}
}
</script>
</body>
</html>