-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathprofile.php
More file actions
320 lines (274 loc) · 11.7 KB
/
Copy pathprofile.php
File metadata and controls
320 lines (274 loc) · 11.7 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
<?php
/**
* ============================================================================
* Car Rental System - User Profile Management
* ============================================================================
*
* This file allows logged-in users to view and update their personal profile
* information. It handles the form submission for updating details such as
* name, contact number, date of birth, and address in the database.
*
* ----------------------------------------------------------------------------
* AUTHORSHIP & CREDITS (Amey Thakur)
* ----------------------------------------------------------------------------
* This project was developed by the Amey Thakur:
* - Amey Thakur
*
*
*
*
* @package CarRentalSystem
* @subpackage UserDashboard
* @author Amey Thakur (Lead)
* @link https://github.com/Amey-Thakur
* @repository https://github.com/Amey-Thakur/CAR-RENTAL-SYSTEM
* @version 1.0.0
* @date 2021-01-19
* @license MIT
*
* @requires PHP 7.0+
* @requires MySQL 5.7+
*
* ============================================================================
* CHANGE LOG:
* ----------------------------------------------------------------------------
* 2021-01-19 - Initial release - Amey Thakur
* ============================================================================
*/
/**
* Session Initialization
*/
session_start();
/**
* Error Reporting
*/
error_reporting(0);
/**
* Database Connection
*/
include('includes/config.php');
/**
* Access Control Check
*
* Redirects to the login page if the user is not authenticated.
*/
if (strlen($_SESSION['login']) == 0) {
header('location:index.php');
} else {
/**
* Profile Update Logic
*
* Handles the 'updateprofile' POST request.
* Updates the user's information in the 'tblusers' table based on the bound parameters.
*/
if (isset($_POST['updateprofile'])) {
$name = $_POST['fullname'];
$mobileno = $_POST['mobilenumber'];
$dob = $_POST['dob'];
$adress = $_POST['address']; // Note: Variable naming follows legacy convention
$city = $_POST['city'];
$country = $_POST['country'];
$email = $_SESSION['login'];
// SQL Update Statement
$sql = "update tblusers set FullName=:name,ContactNo=:mobileno,dob=:dob,Address=:adress,City=:city,Country=:country where EmailId=:email";
$query = $dbh->prepare($sql);
// Parameter Binding
$query->bindParam(':name', $name, PDO::PARAM_STR);
$query->bindParam(':mobileno', $mobileno, PDO::PARAM_STR);
$query->bindParam(':dob', $dob, PDO::PARAM_STR);
$query->bindParam(':adress', $adress, PDO::PARAM_STR);
$query->bindParam(':city', $city, PDO::PARAM_STR);
$query->bindParam(':country', $country, PDO::PARAM_STR);
$query->bindParam(':email', $email, PDO::PARAM_STR);
// Execute Update
$query->execute();
// Success Message
$msg = "Profile Updated Successfully";
}
?>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>AHNA | CAR Rental</title>
<!-- CSS Dependencies -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<link rel="stylesheet" href="assets/css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="assets/css/owl.transitions.css" type="text/css">
<link href="assets/css/slick.css" rel="stylesheet">
<link href="assets/css/bootstrap-slider.min.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="assets/images/favicon-icon/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="assets/images/favicon-icon/apple-touch-icon-114-precomposed.html">
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="assets/images/favicon-icon/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/images/favicon-icon/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="assets/images/favicon-icon/favicon.png">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
<!-- Custom Component Styles -->
<style>
.errorWrap {
padding: 10px;
margin: 0 0 20px 0;
background: #fff;
border-left: 4px solid #dd3d36;
-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
}
.succWrap {
padding: 10px;
margin: 0 0 20px 0;
background: #fff;
border-left: 4px solid #5cb85c;
-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
}
div {
font-family: Play;
font-size: 20px;
color: BLUE;
}
</style>
</head>
<body style="background-color:aqua;">
<!-- Header -->
<?php include('includes/header.php'); ?>
<!-- Page Header -->
<center>
<div class="page-heading">
<br /><br />
<h1 style="color:blue;">MY PROFILE</h1>
</div>
</center>
<?php
/**
* User Data Retrieval
*
* Fetches the current user's profile information from database for display
* and pre-filling the form fields.
*/
$useremail = $_SESSION['login'];
$sql = "SELECT * from tblusers where EmailId=:useremail";
$query = $dbh->prepare($sql);
$query->bindParam(':useremail', $useremail, PDO::PARAM_STR);
$query->execute();
$results = $query->fetchAll(PDO::FETCH_OBJ);
$cnt = 1;
// Check if user exists
if ($query->rowCount() > 0) {
foreach ($results as $result) { ?>
<!-- Profile Info Container -->
<div class="container">
<div class="user_profile_info gray-bg padding_4x4_40" style="background-color:aqua;">
<div class="upload_user_logo">
<img src="assets\images\dealer-logo.png" alt="image">
</div>
<div class="dealer_info" style="color:blue;">
<h5 style="color:black;"><?php echo htmlentities($result->FullName); ?></h5>
<p>
<?php echo htmlentities($result->Address); ?><br>
<?php echo htmlentities($result->City); ?> <?php echo htmlentities($result->Country); ?>
</p>
</div>
</div>
<div class="row">
<!-- Sidebar -->
<div class="col-md-3 col-sm-3">
<?php include('includes/sidebar.php'); ?>
<!-- Profile Form Area -->
<div class="col-md-6 col-sm-8" style="background-color:black;">
<div class="profile_wrap">
<center>
<h5 class="uppercase underline" style="background-color:blue;">MY PROFILE</h5>
</center>
<!-- Success Notification -->
<?php if ($msg) { ?>
<div class="succWrap"><strong>SUCCESS</strong>:<?php echo htmlentities($msg); ?> </div>
<?php } ?>
<!-- Profile Update Form -->
<form method="post">
<!-- Registration Info (Read-Only) -->
<div class="form-group" style="color:white;">
<label class="control-label" style="color:blue;">REGISTRATION DATE -></label>
<?php echo htmlentities($result->RegDate); ?>
</div>
<!-- Last Update Info -->
<?php if ($result->UpdationDate != "") { ?>
<div class="form-group" style="color:white;">
<label class="control-label" style="color:blue;">LAST UPDATED ON -></label>
<?php echo htmlentities($result->UpdationDate); ?>
</div>
<?php } ?>
<!-- Editable Fields -->
<div class="form-group">
<label class="control-label" style="color:blue;">> NAME</label>
<input class="form-control white_bg" name="fullname" placeholder="Name"
value="<?php echo htmlentities($result->FullName); ?>" id="fullname" type="text" required>
</div>
<div class="form-group">
<label class="control-label" style="color:blue;">> EMAIL ADDRESS</label>
<input class="form-control white_bg" placeholder="Email Address"
value="<?php echo htmlentities($result->EmailId); ?>" name="emailid" id="email" type="email" required
readonly>
</div>
<div class="form-group">
<label class="control-label" style="color:blue;">> CONTACT NUMBER</label>
<input class="form-control white_bg" name="mobilenumber" placeholder="Contact Number"
value="<?php echo htmlentities($result->ContactNo); ?>" id="phone-number" type="text" required>
</div>
<div class="form-group">
<label class="control-label" style="color:blue;">> DATE OF BIRTH</label>
<input class="form-control white_bg" value="<?php echo htmlentities($result->dob); ?>" name="dob"
placeholder="DD/MM/YYYY" id="birth-date" type="text">
</div>
<div class="form-group">
<label class="control-label" style="color:blue;">> RESIDENTIAL ADDRESS</label>
<textarea class="form-control white_bg" name="address" rows="3"
placeholder="Enter your address"><?php echo htmlentities($result->Address); ?></textarea>
</div>
<div class="form-group">
<label class="control-label" style="color:blue;">> COUNTRY</label>
<input class="form-control white_bg" id="country" name="country" placeholder="Country"
value="<?php echo htmlentities($result->City); ?>" type="text">
</div>
<div class="form-group">
<label class="control-label" style="color:blue;">> CITY</label>
<input class="form-control white_bg" id="city" name="city" placeholder="City"
value="<?php echo htmlentities($result->City); ?>" type="text">
</div>
<!-- Submit Button -->
<div class="form-group">
<button type="submit" name="updateprofile" class="btn" style="background-color:blue;">UPDATE MY
PROFILE</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php }
} ?>
<p></p><br />
<!-- Footer -->
<?php include('includes/footer.php'); ?>
<!-- Modals -->
<?php include('includes/login.php'); ?>
<?php include('includes/registration.php'); ?>
<?php include('includes/forgotpassword.php'); ?>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/interface.js"></script>
<script src="assets/js/bootstrap-slider.min.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
</body>
</html>
<?php } ?>