-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditpage.php
424 lines (332 loc) · 13.2 KB
/
editpage.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<title>QBnB Main User Page</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
<?php
//Create a user session or resume an existing one
session_start();
?>
<?php
if(isset($_SESSION['id'])) {
// include database connection
include_once 'config/connection.php';
// SELECT query
$query = "SELECT member_id,username, password, email FROM member WHERE member_id=?";
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $_SESSION['id']);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
// Row data
$myrow = $result->fetch_assoc();
} else {
//User is not logged in. Redirect the browser to the login index.php page and kill this page.
header("Location: index.php");
echo "Not logged in";
die();
}
?>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.php">QBnB</a>
</div>
<ul class="nav navbar-nav">
<li><a href="gen_main.php">Home</a></li>
<li><a href="myListings.php">My Listings</a></li>
<li><a href="myBookings.php">My Bookings</a></li>
<?php
if(isset($_SESSION['id'])){
//Redirect the browser to the profile editing page and kill this page.
if ($_SESSION['type'] == "administrator")
{
?> <li><a href="admin_membersearch.php">Admin Member Search</a></li>
<li><a href="admin_propertysearch.php">Admin Property Search</a></li>
<?php
}
}
?>
</ul>
<ul class="nav navbar-nav navbar-right">
<?php
if($_SESSION['id']){
include_once 'config/connection.php';
// SELECT query
$query = "SELECT * from notification where member_id = ? AND seen = false;
;";
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param('i', $_SESSION['id']);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
?>
<li><a href="notification.php"><?php echo "Notifications (UNREAD)";?> </a></li>
<?php
} else{
?>
<li><a href="notification.php"><?php echo "Notifications (0)";?> </a></li>
<?php
}
$prop_id = $_GET['property_id'];
if(isset($_GET['addpoi_btn'])){
$query = "SELECT district_id
FROM
property
WHERE
property_id = '$prop_id';
;";
$stmt = $con->prepare($query);
// Execute the query
$stmt->execute();
$result = $stmt->get_result();
// Get the number of rows returned
if($row = $result->fetch_assoc()){
$districtID = $row["district_id"];
}
// SELECT query
$query = "INSERT into points_of_interest values(null,'$districtID',?)";
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $_GET['poi']);
// Execute the query
$stmt->execute();
header('Location: editpage.php?property_id=' . $prop_id);
}
}
?>
<li><a href="userProfile.php"> <?php echo $myrow['username'];?> </a></li>
<li><a href="index.php?logout=1">Log Out</a></li>
</ul>
</div>
</nav>
<br>
<br>
<br>
<div class="page-header">
<h1>Property Details</h1>
</div>
<?php
if($_SESSION['id']){
include_once 'config/connection.php';
$prop_id = $_GET['property_id'];
// SELECT query
$query = "SELECT
property.property_id, street_number, street_name, apt_number,
city,
province,
postal_code,
price,
type, district.district_name
FROM
Property NATURAL JOIN District
WHERE
Property_id = '$prop_id'
;";
//AND DATE_ADD(start_date, INTERVAL 7 day) >= CURRENT_DATE;
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
//$stmt->bind_Param("s", $_SESSION['id']);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
// output data of each row
$row = $result->fetch_assoc();
echo "<div class=\"table-responsive\">
<table class=\"table \" width=\"50\" > <thead>
<tr><th> Property Id </th><th>" . $row["property_id"]. "<tr><th> Street Number </th><th>" . $row["street_number"] . "<tr><th> Street Name </th><th>" . $row["street_name"] . "<tr><th> Apt Number </th><th>" . $row["apt_number"] . "<tr><th> City </th><th>" . $row["city"] . "<tr><th> Province </th><th>" . $row["province"] . "<tr><th> Postal Code </th><th>" . $row["postal_code"] . "<tr><th> Price </th><th>";
?>
<form action='editpage.php?property_id=<?php echo $row["prop_id"]?>?edit=1' method=get>
<input type='hidden' name='property_id' id='property_id' value="<?php echo $row['property_id'] ?>">
<input type='text' name='new_price' id='new_price' value="<?php echo $row['price']; ?>" />
<input type='submit' name = 'confirm_btn' id = 'confirm_btn' value="Update">
</form>
<?php
echo "<tr><th> Type </th><th>" . $row["type"] . "<tr><th> District </th><th>" . $row["district_name"];
echo "</thead></table></div>";
if(isset($_GET['confirm_btn']) && isset($_SESSION['id'])){
// include database connection
include_once 'config/connection.php';
$query = "UPDATE property SET property.price=? WHERE property.property_id='$prop_id'";
$stmt = $con->prepare($query);
$stmt->bind_param('s', $_GET['new_price']);
// Execute the query
$stmt->execute();
header('Location: editpage.php?property_id=' . $prop_id);
}
} else {
echo "Oops! No details for this property.";
}
}
?>
<h3>Features:</h3>
<form action='editpage.php?property_id=<?php echo $row["prop_id"]?>?edit=1' method=get>
<div class="form-group" >
<label for="selF">Features:</label>
<select name="selF" class="form-control" id="selF" style="width: 300px !important; min-width: 300px; max-width: 300px;">
<option value='0'>N/A</option>
<option name = 'Kitchen'>Kitchen</option>
<option name = 'Internet'>Internet</option>
<option name = 'Shampoo'>Shampoo</option>
<option name = 'Washer'>Washer</option>
<option name = 'Dryer'>Dryer</option>
<option name = 'Heating'>Heating</option>
<option name = 'Air Conditioning'>Air Conditioning</option>
<option name = 'Parking'>Parking</option>
<option name = 'TV'>TV</option>
<option name = 'Pets Allowed'>Pets Allowed</option>
<option name = 'Smoking Allowed'>Smoking Allowed</option>
<option name = 'Wheelchair Accessible'>Wheelchair Accessible</option>
<option name = 'Pool'>Pool</option>
<option name = 'Gym'>Gym</option>
<option name = 'Breakfast'>Breakfast</option>
<option name = 'Iron'>Iron</option>
<option name = 'Towels'>Towels</option>
<option name = 'Smoke Free'>Smoke Free</option>
<option name = 'Room Service'>Room Service</option>
<option name = 'Shuttle Service'>Shuttle Service</option>
<option name = 'OC Transpo Accesible'>OC Transpo Accesible</option>
<option name = 'Netflix Service'>Netflix Service</option>
<option name = 'Hot Tub'>Hot tub</option>
</select>
</div>
<input type='hidden' name='property_id' id='property_id' value="<?php echo $row['property_id'] ?>">
<input type='submit' name = 'addfeature_btn' id = 'addfeature_btn' value="Add Feature">
</form>
</th><th>
<?php
include_once 'config/connection.php';
if($_SESSION['id']){
$prop_id = $_GET['property_id'];
if(isset($_GET['addfeature_btn'])){
if(!($_GET['selF'] == '0')){
$query = "SELECT feature_id
FROM
property_feature
WHERE
feature = ?";
$stmt = $con->prepare($query);
$stmt->bind_param("s", $_GET['selF']);
// Execute the query
$stmt->execute();
$result = $stmt->get_result();
// Get the number of rows returned
if($row = $result->fetch_assoc()){
$featureID = $row["feature_id"];
}
$query = "SELECT * FROM has_feature WHERE feature_id = '$featureID' AND property_id = '$prop_id'";
// prepare query for execution
$stmt = $con->prepare($query);
// Execute the query
$stmt->execute();
$result = $stmt->get_result();
$num = $result->num_rows;
if($num>0){
$message = "This feature is already listed for this property.";
echo "<script type='text/javascript'>alert('$message');</script>";
}
else
{
$query = "INSERT into has_feature values('$prop_id','$featureID')";
$stmt = $con->prepare($query);
$stmt->execute();
}
}
}
$prop_id = $_GET['property_id'];
// SELECT query
$query = "SELECT
feature
FROM
property NATURAL JOIN has_feature NATURAL JOIN property_feature
WHERE
property_id = '$prop_id';
;";
// prepare query for execution
$stmt = $con->prepare($query);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
echo "<div class=\"table-responsive\">
<table class=\"table\"> <thead><tr><th> Feature </tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr><td>" . $row["feature"];
echo"</td></tr>";
}
echo "</thead></table></div>";
} else {
echo "No features registered with this property.";
}
}
?>
<h3>Landmarks Nearby</h3>
<form action='editpage.php?property_id=<?php echo $row["prop_id"]?>?edit=1' method=get>
<input type='hidden' name='property_id' id='property_id' value="<?php echo $prop_id ?>">
<input type='text' name='poi' id='poi' placeholder="Points of interest..." />
<input type='submit' name = 'addpoi_btn' id = 'addpoi_btn' value="Add POI">
</form>
</th><th>
<?php
if($_SESSION['id']){
include_once 'config/connection.php';
// SELECT query
$query = "SELECT
poi_name
FROM
points_of_interest NATURAL JOIN property
WHERE
property_id = '$prop_id';
;";
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
//$stmt->bind_Param("s", $_SESSION['id']);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
echo "<div class=\"table-responsive\">
<table class=\"table\"> <thead><tr><th> Point of Interest: </tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr><td>" . $row["poi_name"];
echo"</td></tr>";
}
echo "</thead></table></div>";
} else {
echo "No registered landmarks nearby";
}
}
?>
</body>
</html>