-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage_products.php
94 lines (78 loc) · 3.19 KB
/
manage_products.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
<?php
include_once('connection/connection.php');
session_start();
// Kiểm tra xem người dùng đã đăng nhập chưa
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
// Kiểm tra vai trò của người dùng
if ($_SESSION['role'] !== 'admin') {
// Nếu không phải admin, chuyển hướng về trang không có quyền truy cập
header("Location: unauthorized.php");
exit();
}
// Lấy danh sách sản phẩm từ cơ sở dữ liệu
$sql = "SELECT * FROM products";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
$products = $result->fetch_all(MYSQLI_ASSOC);
} else {
$products = [];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gấu Bông Shop</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<?php include('header.php'); ?>
<section class="container mt-4">
<h2>Quản Lý Sản Phẩm</h2>
<!-- Các nút và liên kết thêm/sửa/xóa sản phẩm -->
<a href="add_product.php" class="btn btn-primary mb-3">Thêm Sản Phẩm</a>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Tên Sản Phẩm</th>
<th>Mô Tả</th>
<th>Giá</th>
<th>Loại</th>
<th>Kích Thước</th>
<th>Ảnh</th>
<th>Thao Tác</th>
</tr>
</thead>
<tbody>
<?php foreach ($products as $product) : ?>
<tr>
<td><?php echo $product['id']; ?></td>
<td><?php echo $product['name']; ?></td>
<td><?php echo $product['description']; ?></td>
<td><?php echo $product['price']; ?></td>
<td><?php echo $product['type']; ?></td>
<td><?php echo $product['size']; ?></td>
<td><img src="<?php echo $product['image']; ?>" alt="<?php echo $product['name']; ?>" width="50"></td>
<td>
<a href="edit_product.php?id=<?php echo $product['id']; ?>" class="btn btn-warning">Sửa</a>
<a href="delete_product.php?id=<?php echo $product['id']; ?>" class="btn btn-danger">Xóa</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</section>
<?php include('footer.php'); ?>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Thêm các thư viện JavaScript cần thiết -->
</body>
</html>