-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit_product.php
119 lines (98 loc) · 4.35 KB
/
edit_product.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
<?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 ID sản phẩm từ tham số truyền vào
if (!isset($_GET['id'])) {
header("Location: manage_products.php");
exit();
}
$product_id = $_GET['id'];
// Kiểm tra xem sản phẩm có tồn tại không
$sql = "SELECT * FROM products WHERE id = $product_id";
$result = $conn->query($sql);
if ($result->num_rows == 0) {
header("Location: manage_products.php");
exit();
}
$product = $result->fetch_assoc();
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Xử lý dữ liệu khi form được submit
$name = $_POST['name'];
$description = $_POST['description'];
$price = $_POST['price'];
$type = $_POST['type'];
$size = $_POST['size'];
$image = $_POST['image']; // Đây là một URL, bạn có thể xử lý tải lên hình ảnh nếu cần
// Thực hiện truy vấn để cập nhật thông tin sản phẩm
$sql = "UPDATE products SET name='$name', description='$description', price=$price, type='$type', size='$size', image='$image' WHERE id=$product_id";
$result = $conn->query($sql);
if ($result) {
header("Location: manage_products.php");
exit();
} else {
$error = "Có lỗi khi cập nhật sản phẩm.";
}
}
?>
<!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>Sửa Sản Phẩm</h2>
<!-- Form sửa sản phẩm -->
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]) . '?id=' . $product_id; ?>">
<div class="form-group">
<label for="name">Tên Sản Phẩm:</label>
<input type="text" class="form-control" id="name" name="name" value="<?php echo $product['name']; ?>" required>
</div>
<div class="form-group">
<label for="description">Mô Tả:</label>
<textarea class="form-control" id="description" name="description" rows="3" required><?php echo $product['description']; ?></textarea>
</div>
<div class="form-group">
<label for="price">Giá:</label>
<input type="number" class="form-control" id="price" name="price" value="<?php echo $product['price']; ?>" required>
</div>
<div class="form-group">
<label for="type">Loại:</label>
<input type="text" class="form-control" id="type" name="type" value="<?php echo $product['type']; ?>" required>
</div>
<div class="form-group">
<label for="size">Kích Thước:</label>
<input type="text" class="form-control" id="size" name="size" value="<?php echo $product['size']; ?>" required>
</div>
<div class="form-group">
<label for="image">URL Ảnh:</label>
<input type="text" class="form-control" id="image" name="image" value="<?php echo $product['image']; ?>" required>
</div>
<button type="submit" class="btn btn-primary">Cập Nhật</button>
<a href="manage_products.php" class="btn btn-secondary">Cancel</a>
</form>
</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>