-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquanlysinhvien.php
332 lines (297 loc) · 18.7 KB
/
quanlysinhvien.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<?php
ob_start();
session_start();
require 'connect_db.php';
if (!empty($_SESSION['id']) && $_SESSION['role'] == 0) {
?>
<!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.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<title>QL SV</title>
<style>
/* Set height of the grid so .sidenav can be 100% (adjust if needed) */
.row.content {
height: 1000px
}
/* Set gray background color and 100% height */
.sidenav {
background-color: #f1f1f1;
height: 100%;
}
/* Set black background color, white text and some padding */
footer {
background-color: #555;
color: white;
padding: 15px;
}
/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
.sidenav {
height: auto;
padding: 15px;
}
.row.content {
height: auto;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="trangchu.php">Assignment</a>
</div>
<ul class="nav navbar-nav navbar-right">
<?php
if (!empty($_SESSION['username'])) {
?>
<li style="color:white; margin-top: 5px">
<h4>Xin chào <?= $_SESSION['username'] ?></h4>
</li>
<li><a href='logout.php'><span class='glyphicon glyphicon-user'></span> Đăng xuất</a></li>
<?php
} else {
echo '<li><a href="register.php"><span class="glyphicon glyphicon-user"></span> Đăng ký</a></li>
<li><a href="index.php"><span class="glyphicon glyphicon-log-in"></span> Đăng nhập</a></li>';
}
?>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row content">
<div class="col-sm-3 sidenav" style="width:20%">
<h4>Danh Mục</h4>
<div class="list-group">
<a href="trangchu.php" class="list-group-item ">Giới Thiệu</a>
<?php if (!empty($_SESSION['id'])) { ?>
<?php if ($_SESSION['role'] == 0) { ?>
<a href="quanlysinhvien.php" class="list-group-item active">Quản lý sinh viên</a>
<?php } ?>
<a href="thongtincanhan.php" class="list-group-item">Thông tin cá nhân</a>
<a href="danhsachnguoidung.php" class="list-group-item">Danh sách người dùng</a>
<?php
if (isset($_SESSION['role']) && $_SESSION['role'] == 0) {
echo '<a href="giaobai.php" class="list-group-item">Giao bài</a>';
} else {
echo '<a href="nopbai.php" class="list-group-item">Nộp bài</a>';
}
?>
<a href="challenge.php" class="list-group-item">Challenge</a>
<?php } ?>
</div><br>
</div>
<!-- Kiểm tra xem acc có role được phép hay không -->
<?php
if (isset($_SESSION['role']) && $_SESSION['role'] == 0) {
?>
<div class="container">
<?php
//lấy dữ liệu theo id mỗi khi người dùng thực hiện action view hoặc edit
//Khởi tạo giá trị cho các biến tránh lỗi khi không có action
$id = $role = '';
$value_username = $value_password = $value_hoten = $value_email = $value_sdt = '';
$disabled = '';
//Nếu click chitiet/sua mới thực hiện lấy thông tin dựa vào id điền vào form
if (!empty($_GET['action']) && !empty($_GET['id'])) {
$id = $_GET['id'];
$conn = mysqli_connect('localhost', 'root', '', 'assignment');
if ($conn->connect_error) {
echo '<script>alert("Connect Database fail!")</script>';
die();
}
//Lấy toàn bộ thông tin user thông qua id
$stmt = $conn->prepare("SELECT * FROM user WHERE id=? AND role=1");
$stmt->bind_param("s", $id);
$stmt->execute();
$result = $stmt->get_result();
$result = mysqli_fetch_assoc($result);
$stmt->close();
$conn->close();
if ($result != null) {
//Khởi tạo giá trị value để gán vào form
$value_username = 'value="' . htmlspecialchars($result['username']) . '"';
$value_password = 'value="' . htmlspecialchars($result['password']) . '"';
$value_hoten = 'value="' . htmlspecialchars($result['hoten']) . '"';
$value_email = 'value="' . htmlspecialchars($result['email']) . '"';
$value_sdt = 'value="' . htmlspecialchars($result['sdt']) . '"';
if ($result['role'] == 0) $role = 'Giảng viên';
else $role = 'Sinh viên';
}
//Nếu action là xem chi tiết thì gán attribute disabled để ko cho người dùng nhập
if ($_GET['action'] == 'view') $disabled = 'disabled';
}
?>
<!-- Form nhập/hiển thị thông tin -->
<div class="row">
<div class="col-sm-6" style="width: 30% ;">
<h1>Thông tin sinh viên</h1>
<form action="" method="POST">
<div class="form-group">
<label>Username:</label><br>
<input type="text" class="form-control" placeholder="Nhập Username" name="input_username" <?= $value_username ?> <?= $disabled ?> required>
</div>
<div class="form-group">
<label>Password:</label>
<input type="password" class="form-control" placeholder="Nhập password" name="input_password" <?= $value_password ?> <?= $disabled ?> required>
</div>
<div class="form-group">
<label>Họ tên:</label>
<input type="text" class="form-control" placeholder="Nhập họ và tên đầy đủ" name="input_hoten" <?= $value_hoten ?> <?= $disabled ?> required>
</div>
<div class="form-group">
<label>Email:</label>
<input type="email" class="form-control" placeholder="Nhập email" name="input_email" <?= $value_email ?> <?= $disabled ?> required>
</div>
<div class="form-group">
<label>Số điện thoại:</label>
<input type="number" class="form-control" placeholder="Nhập số điện thoại" name="input_phone" <?= $value_sdt ?> <?= $disabled ?> required>
</div>
<!-- Nếu thực hiện sửa hoặc xem chi tiết mới hiển thị ID và Role -->
<?php
if (!empty($_GET['action'])) {
?>
<div class="form-group">
<label>ID:</label>
<input type="number" value="<?= htmlspecialchars($id) ?>" style="width: 50px ;" disabled>
<label>Role:</label>
<input type="text" value="<?= htmlspecialchars($role) ?>" style="width: 100px ;" disabled>
</div>
<!-- Sửa tên button tùy theo chức năng thêm/sửa và không có gì nếu ở chức năng xem chi tiết -->
<?php
if ($_GET['action'] == 'edit') {
echo '<button type="submit" class="btn btn-primary" name="click_submit">Cập nhật</button>';
}
} else {
echo '<button type="submit" class="btn btn-primary" name="click_submit">Thêm</button>';
}
?>
</form>
<?php
if (isset($_POST['click_submit'])) {
if (
!empty($_POST['input_username']) && !empty($_POST['input_password']) && !empty($_POST['input_hoten']) &&
!empty($_POST['input_email']) && !empty($_POST['input_phone'])
) {
$input_username = $_POST['input_username'];
$input_password = hash('sha256', $_POST['input_password']);
$input_hoten = $_POST['input_hoten'];
$input_email = $_POST['input_email'];
$input_phone = $_POST['input_phone'];
//Kiểm tra email và phone có đúng định dạng
$pattern_email = "/^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,7}$/";
$pattern_phone = "/^[0-9]{10}$/";
if (preg_match($pattern_email, $input_email)) {
if (preg_match($pattern_phone, $input_phone)) {
//xử lý khi email và phone đã đúng định dạng
$conn = mysqli_connect('localhost', 'root', '', 'assignment');
if ($conn->connect_error) {
echo '<script>alert("Connect Database fail!")</script>';
die();
}
//Kiem tra user da ton tai hay chua
$stmt_selec = $conn->prepare("SELECT * FROM user WHERE username=?");
$stmt_selec->bind_param("s", $input_username);
$stmt_selec->execute();
$result = $stmt_selec->get_result();
if (($result->num_rows) > 0) {
//Khi đã tồn tại username, xác định xem có phải action chỉnh sửa không, nếu đúng thì thực hiện update
if (!empty($_GET['action'])) {
$result = mysqli_fetch_assoc($result);
$stmt_update = $conn->prepare("UPDATE user SET username=?, password=?, hoten=?, email=?, sdt=? WHERE id=? AND role=1");
$stmt_update->bind_param("sssssi", $input_username, $input_password, $input_hoten, $input_email, $input_phone, $result['id']);
$stmt_update->execute();
$stmt_update->close();
echo '<script>alert("Cập nhật thành công")</script>';
} else {
echo '<script>alert("Username đã tồn tại")</script>';
}
} else {
//thuc hien them moi user sinhvien
$stmt_insert = $conn->prepare("INSERT INTO user VALUES (null,?, ?, ?, ?, ?, 1, 0)");
$stmt_insert->bind_param("sssss", $input_username, $input_password, $input_hoten, $input_email, $input_phone);
$stmt_insert->execute();
$stmt_insert->close();
// $sql='INSERT INTO user VALUES (null,$input_username, $input_password, $input_hoten, $input_email, $input_phone, 1)';
// QueryData($sql);
echo '<script>alert("Đăng ký thành công")</script>';
}
$stmt_selec->close();
$conn->close();
} else {
echo '<script>alert("Số điện thoại không hợp lệ")</script>';
}
} else {
echo '<script>alert("Email không hợp lệ")</script>';
}
} else {
echo '<script>alert("Không được để trống bất kỳ trường thông tin nào")</script>';
}
}
?>
</div>
<div class="col-sm-6" style="width: 53%">
<center>
<h1>Danh sách sinh viên</h1>
</center>
<br>
<table class="table table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Họ tên</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<!-- Liệt kê danh sách sinh viên (role = 1) -->
<?php
$sql = "SELECT id, hoten FROM user WHERE role=1";
$result_lietke = GetData($sql);
while ($row = mysqli_fetch_assoc($result_lietke)) {
?>
<tr>
<td><?= $row['id'] ?></td>
<td><?= htmlspecialchars($row['hoten']) ?></td>
<td style="width: 100px ; text-align: center;"><a href="?id=<?= $row['id'] ?>&action=view" class="btn btn-primary">Chi tiết</a></td>
<td style="width: 50px ; text-align: center;"><a href="?id=<?= $row['id'] ?>&action=edit" class="btn btn-warning">Sửa</a></td>
<?php
//sinh token
$token = md5(uniqid());
$_SESSION['token'] = $token;
?>
<td style="width: 50px ; text-align: center;">
<a href="./delete.php?id=<?= $row['id'] ?>&token=<?= $token ?>" class="btn btn-danger">Xóa</a>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
<?php
} else {
echo '<center><h1>Chỉ có Role giáo viên mới có thể truy cập chức năng này</h1></center>';
}
?>
</div>
</div>
</body>
</html>
<?php
} else {
header("Location: trangchu.php");
}
?>