-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooking-edit.php
165 lines (143 loc) · 4.94 KB
/
booking-edit.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
<style>
table {
border-collapse: collapse;
width: 100%;
border: solid 1px;
line-height: 10px;
font-size: 15px;
}
th,
td {
text-align: left;
padding: 8px;
}
th {
background-color: #ddd;
font-weight: bold;
}
input[type="text"],
input[type="number"],
textarea {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
margin-bottom: 30px;
margin-top: 30px;
width: 100%;
height: 40px;
font-size: 20px;
}
label {
display: inline-block;
width: 200px;
font-size: 20px;
padding: 5px;
}
</style>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "hotel";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
if (isset($_POST['save'])) {
// Lấy dữ liệu từ form sửa phòng
$guest_name = $_POST['guest_name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$check_in_date = $_POST['check_in_date'];
$check_out_date = $_POST['check_out_date'];
$room_id = $_POST['room_id'];
// Cập nhật thông tin phòng trong cơ sở dữ liệu
$sql = "UPDATE bookings SET guest_name='$guest_name', email='$email', phone='$phone', check_in_date='$check_in_date', check_out_date='$check_out_date', room_beds='$room_beds', room_capacity='$room_capacity', room_amenities='$room_amenities' WHERE room_id='$room_id'";
if ($conn->query($sql) === TRUE) {
echo "Cập nhật thông tin đơn đặt thành công thành công!";
} else {
echo "Lỗi: " . $sql . "<br>" . $conn->error;
}
}
if (isset($_GET['id'])) {
$booking_id = $_GET['id'];
// Lấy thông tin phòng từ cơ sở dữ liệu
$sql = "SELECT * FROM bookings WHERE booking_id='$booking_id'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
$row = $result->fetch_assoc();
// Hiển thị form sửa phòng
echo "<h2>Sửa thông tin phòng:</h2>
<form method='post'>
<input type='hidden' name='booking_id' value='" . $row["booking_id"] . "'>
<label for='guest_name'>Guest's Name:</label>
<input type='text' name='guest_name' value='" . $row["guest_name"] . "' required><br>
<label for='email'>Email:</label>
<input type='text' name='email' value='" . $row["email"] . "' required><br>
<label for='phone'>Phone:</label>
<input type='text' name='phone' value='" . $row["phone"] . "' required><br>
<label for='check_in_date'>Check-in:</label>
<input type='text' name='check_in_date' value='" . $row["check_in_date"] . "' required><br>
<label for='check_out_date'>Check-out:</label>
<input type='text' name='check_out_date' value='" . $row["check_out_date"] . "' required><br>
<label for='room_beds'>Room_id:</label>
<input type='text' name='room_id' value='" . $row["room_id"] . "' required><br>
<input type='submit' name='submit' value='Update Room'>
</form>";
} else {
echo "0 results";
}
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
$conn->close();
?>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "hotel";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
if (isset($_POST["submit"])) {
$booking_id = $_POST["booking_id"];
$guest_name = $_POST['guest_name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$check_in_date = $_POST['check_in_date'];
$check_out_date = $_POST['check_out_date'];
$room_id = $_POST['room_id'];
// Cập nhật dữ liệu phòng vào bảng rooms
$sql = "UPDATE bookings SET
guest_name = '$guest_name',
email = '$email',
phone = '$phone',
check_in_date = '$check_in_date',
check_out_date = '$check_out_date',
room_id = '$room_id'
WHERE booking_id = '$booking_id'";
if ($conn->query($sql) === TRUE) {
$message = "Cập nhật đơn thành công!";
echo "<script>alert('$message');</script>";
echo "<script>setTimeout(\"location.href = 'booking-manage.php';\",500);</script>";
} else {
echo "Lỗi. " . $conn->error;
}
}
$conn->close();
?>