-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotel_image.php
151 lines (141 loc) · 5.03 KB
/
hotel_image.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
<?php
include("header.php");
if (!isset($_SESSION['staffid'])) {
echo "<script>window.location='index.php';</script>";
}
if (isset($_POST['submit'])) {
$img = rand() . $_FILES["hotel_image"]["name"];
move_uploaded_file($_FILES["hotel_image"]["tmp_name"], "imghotel/" . $img);
if (isset($_GET['editid'])) {
$sql = "UPDATE hotel_image SET hotel_id='$_POST[hotel_id]',room_typeid='$_POST[room_typeid]',hotel_image='$img',image_description='$_POST[image_description]',status='$_POST[status]' WHERE hotel_imageid='$_GET[editid]'";
$qsql = mysqli_query($con, $sql);
if (mysqli_affected_rows($con) == 1) {
echo "<script>alert('Hotel image record updated successfully..');</script>";
} else {
echo mysqli_error($con);
}
} else {
$sql = "INSERT INTO hotel_image(hotel_id,room_typeid,hotel_image,image_description,status) values('$_POST[hotel_id]','$_POST[room_typeid]','$img','$_POST[image_description]','$_POST[status]')";
$qsql = mysqli_query($con, $sql);
if (mysqli_affected_rows($con) == 1) {
echo "<script>alert('Hotel image uploaded..');</script>";
echo "<script>window.location='hotel_image.php?hotel_id=" . $_GET['hotel_id'] . "';</script>";
} else {
echo mysqli_error($con);
}
}
}
$sqlhotel = "select hotel.*,tourism_location.location_name from hotel LEFT JOIN tourism_location ON hotel.location_id=tourism_location.location_id WHERE hotel.hotel_id='$_GET[hotel_id]'";
$qsqlhotel = mysqli_query($con, $sqlhotel);
$rshotel = mysqli_fetch_array($qsqlhotel);
?>
<!-- Sub Banner Start -->
<div class="mg_sub_banner">
<div class="container">
<h2>Hotel Image - <?php echo $rshotel['hotel_name']; ?></h2>
</div>
</div>
<!-- Sub Banner Start -->
<!-- Main Contant Wrap Start -->
<div class="iqoniq_contant_wrapper">
<section>
<div class="container">
<form method="post" action="" enctype="multipart/form-data">
<div class="row">
<!-- Hotel Destination Start -->
<div class="col-md-12 col-sm-12">
<div class="mg_hotel_destination fancy-overlay">
<div class="text">
<div class="row">
<div class="col-md-2 boldfont">
Hotel
</div>
<div class="col-md-10">
<select name="hotel_id" id="hotel_id" class="form-control">
<?php
$sqlhotel1 = "SELECT * FROM hotel where hotel_id='$rshotel[hotel_id]'";
$qsqlhotel1 = mysqli_query($con, $sqlhotel1);
while ($rshotel1 = mysqli_fetch_array($qsqlhotel1)) {
echo "<option value='$rshotel1[hotel_id]'>$rshotel1[hotel_name]</option>";
}
?>
</select>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Room type
</div>
<div class="col-md-10">
<select name="room_typeid" id="room_typeid" class="form-control">
<option value="">Select the room type</option>
<?php
$sqlroom_type = "SELECT * FROM room_type where hotel_id='$rshotel[hotel_id]'";
$qsqlroom_type = mysqli_query($con, $sqlroom_type);
while ($rsroom_type = mysqli_fetch_array($qsqlroom_type)) {
if ($rsroom_type['room_typeid'] == $rsedit['room_typeid']) {
echo "<option value='$rsroom_type[room_typeid]' selected>$rsroom_type[room_type]</option>";
} else {
echo "<option value='$rsroom_type[room_typeid]'>$rsroom_type[room_type]</option>";
}
}
?>
</select>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Hotel image
</div>
<div class="col-md-10">
<input type="file" name="hotel_image" id="hotel_image" class="form-control">
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Image Description
</div>
<div class="col-md-10">
<textarea name="image_description" id="image_description" class="form-control"></textarea>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Status
</div>
<div class="col-md-10">
<select name="status" id="status" class="form-control">
<option value="">Select status</option>
<?php
$arr = array("Active", "Inactive");
foreach ($arr as $val) {
if ($val == $rsedit['status']) {
echo "<option value='$val' selected>$val</option>";
} else {
echo "<option value='$val'>$val</option>";
}
}
?>
</select>
</div>
</div><br>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-10">
<input type="submit" name="submit" id="submit" class="form-control btn btn-warning " style="width: 250px;height:50px;">
</div>
</div><br>
</form>
</div>
</div>
</div>
<!-- Hotel Destination End -->
</div>
</div>
</section>
</div>
<!-- Main Contant Wrap End -->
<?php
include("footer.php");
?>