-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbQuery.php
More file actions
377 lines (295 loc) · 8.71 KB
/
dbQuery.php
File metadata and controls
377 lines (295 loc) · 8.71 KB
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
<?php
include('dbConnect.php');
// $createTable =
// "CREATE TABLE admins
// (
// AdminID int NOT NULL PRIMARY KEY Auto_Increment,
// AdminEmail varchar(30),
// AdminName varchar(30),
// AdminPp text,
// AdminPassword varchar(30),
// AdminPh varchar(20)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Admins table set up successfully.";
// }
// else
// {
// echo "Admins table set up failed.";
// }
// $createTable =
// "CREATE TABLE users
// (
// UserID int NOT NULL PRIMARY KEY Auto_Increment,
// UserEmail varchar(30),
// UserName varchar(30),
// UserPp text,
// UserPassword varchar(30),
// UserPh varchar(20),
// UserBalance decimal,
// HostVerificationStatus varchar(10),
// GuestVerificationStatus varchar(10)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Users table set up successfully.";
// }
// else
// {
// echo "Users table set up failed.";
// }
// $createTable =
// "CREATE TABLE paymenttypes
// (
// PaymentTypeID int NOT NULL PRIMARY KEY Auto_Increment,
// PaymentTypeName varchar(30)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "PaymentTypes table set up successfully.";
// }
// else
// {
// echo "PaymentTypes table set up failed.";
// }
// $createTable =
// "CREATE TABLE paymentinfo
// (
// PaymentID int NOT NULL PRIMARY KEY Auto_Increment,
// UserAccountType varchar(10),
// PaymentNo varchar(20),
// CardHolderName varchar(30),
// CardNumber varchar(30),
// CardExpirationDate date,
// CardCVV int,
// CardBrand varchar(30),
// BillingCountry varchar(30),
// BillingAddress varchar(50),
// BillingPostalCode varchar(10),
// PaymentTypeID int,
// UserID int,
// FOREIGN KEY (PaymentTypeID) REFERENCES paymenttypes(PaymentTypeID),
// FOREIGN KEY (UserID) REFERENCES users(UserID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "PaymentInfo table set up successfully.";
// }
// else
// {
// echo "PaymentInfo table set up failed.";
// }
// $createTable =
// "CREATE TABLE verifications
// (
// VerificationID int NOT NULL PRIMARY KEY Auto_Increment,
// UserAccountType varchar(10),
// LegalName varchar(30),
// Selfie text,
// IDNumber varchar(30),
// IDFront text,
// IDBack text,
// IDType varchar(30),
// VerificationDate date,
// VerificationStatus varchar(10),
// UserID int,
// AdminID int,
// CountryID int,
// FOREIGN KEY (UserID) REFERENCES users(UserID),
// FOREIGN KEY (AdminID) REFERENCES admins(AdminID),
// FOREIGN KEY (CountryID) REFERENCES countries(CountryID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Verifications table set up successfully.";
// }
// else
// {
// echo "Verifications table set up failed.";
// }
// $createTable =
// "CREATE TABLE countries
// (
// CountryID int NOT NULL PRIMARY KEY Auto_Increment,
// CountryName varchar(30)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Country table set up successfully.";
// }
// else
// {
// echo "Country table set up failed.";
// }
// $createTable =
// "CREATE TABLE cities
// (
// CityID int NOT NULL PRIMARY KEY Auto_Increment,
// CityName varchar(30),
// CountryID int,
// FOREIGN KEY (CountryID) REFERENCES countries(CountryID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Cities table set up successfully.";
// }
// else
// {
// echo "Cities table set up failed.";
// }
// $createTable =
// "CREATE TABLE cancellationpolicies
// (
// CancelPolicyID int NOT NULL PRIMARY KEY Auto_Increment,
// CancelPolicyName varchar(30),
// CancelPolicyDescription varchar(100)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "CancellationPolicies table set up successfully.";
// }
// else
// {
// echo "CancellationPolicies table set up failed.";
// }
// $createTable =
// "CREATE TABLE properties
// (
// PropertyID int NOT NULL PRIMARY KEY Auto_Increment,
// PropertyImage1 text,
// PropertyImage2 text,
// PropertyImage3 text,
// PropertyAddress varchar(50),
// PropertyCoordinates varchar(30),
// PropertyRooms varchar(50),
// PropertyDescription varchar(100),
// PropertyListingDate date,
// PropertyStatus varchar(10),
// PropertyPrice decimal,
// CityID int,
// CancelPolicyID int,
// AdminID int,
// FOREIGN KEY (CityID) REFERENCES cities(CityID),
// FOREIGN KEY (CancelPolicyID) REFERENCES cancellationpolicies(CancelPolicyID),
// FOREIGN KEY (AdminID) REFERENCES admins(AdminID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Properties table set up successfully.";
// }
// else
// {
// echo "Properties table set up failed.";
// }
// $createTable =
// "CREATE TABLE rules
// (
// RuleID int NOT NULL PRIMARY KEY Auto_Increment,
// RuleName varchar(30),
// RuleIcon text,
// RuleDescription varchar(100)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Rules table set up successfully.";
// }
// else
// {
// echo "Rules table set up failed.";
// }
// $createTable =
// "CREATE TABLE propertyrules
// (
// PropertyID int,
// RuleID int,
// FOREIGN KEY (PropertyID) REFERENCES properties(PropertyID),
// FOREIGN KEY (RuleID) REFERENCES rules(RuleID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "PropertyRules table set up successfully.";
// }
// else
// {
// echo "PropertyRules table set up failed.";
// }
// $createTable =
// "CREATE TABLE propertyhosts
// (
// UserID int,
// PropertyID int,
// FOREIGN KEY (UserID) REFERENCES users(UserID),
// FOREIGN KEY (PropertyID) REFERENCES properties(PropertyID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "PropertyHosts table set up successfully.";
// }
// else
// {
// echo "PropertyHosts table set up failed.";
// }
// $createTable =
// "CREATE TABLE bookings
// (
// BookingID int NOT NULL PRIMARY KEY Auto_Increment,
// BookingDate date,
// BookingGuestQty int,
// BookingMessage varchar(255),
// BookingCheckInDate date,
// BookingCheckOutDate date,
// BookingTotalNights int,
// BookingTotalPrice decimal,
// BookingStatus varchar(10),
// BookingServiceFee decimal,
// BookingFinishStatus varchar(10),
// BookingReview varchar(255),
// PaymentID int,
// PropertyID int,
// UserID int,
// FOREIGN KEY (PaymentID) REFERENCES paymentinfo(PaymentID),
// FOREIGN KEY (PropertyID) REFERENCES properties(PropertyID),
// FOREIGN KEY (UserID) REFERENCES users(UserID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Bookings table set up successfully.";
// }
// else
// {
// echo "Bookings table set up failed.";
// }
// $createTable =
// "CREATE TABLE messages
// (
// MessageID int NOT NULL PRIMARY KEY Auto_Increment,
// MessageTimeSent timestamp,
// MessageText varchar(255),
// MessageSenderID int,
// MessageReceiverID int,
// FOREIGN KEY (MessageSenderID) REFERENCES users(UserID),
// FOREIGN KEY (MessageReceiverID) REFERENCES users(UserID)
// )";
// $result = mysqli_query($dbConnect, $createTable);
// if ($result)
// {
// echo "Messages table set up successfully.";
// }
// else
// {
// echo "Messages table set up failed.";
// }