-
Notifications
You must be signed in to change notification settings - Fork 0
/
s_profileEdit.php
257 lines (219 loc) · 9.58 KB
/
s_profileEdit.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
<?php
include 'dbh.inc.php';
session_start();
$UserID = $_SESSION['uID'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navigation and footer</title>
<link rel="stylesheet" href="s_css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
<link rel="stylesheet" href="s_css/s_homepage2.css">
<link rel="stylesheet" href="s_css/s_profileEdit.css">
</head>
<body>
<header>
<p>WildTrek - Best Under Sri Lankan Sky</p>
<!-- navigation bar-->
<nav>
<div class="pic">
<img src="./s_images/download.png" alt="logo" width="32px" height="32px">
<h1 class="logo">WILD<span>TREK</span></h1>
</div>
<input type="checkbox" name="" id="menu">
<label for="menu"><i class="fas fa-bars"></i></label>
<label for="menu"><i class="fas fa-times"></i></label>
<ul class="menu">
<li><a href="./r_main2.php">Home</a></li>
<li><a href="./view_packages_T_pradi.php">Safari Hotels</a></li>
<li class="drop"><a href="#">Safari Tours<i class="fa-solid fa-caret-down"></i></a>
<ul class="submenu">
<li><a href="#">Safari Jeep Reservation</a></li>
<li><a href="#">Camping Reservation</a></li>
</ul>
</li>
<li><a href="./Acontact.php">Contact Us</a></li>
<li><a href="#">Reserve Tours</a></li>
<li><a href="./P_reserve.php">Reserve Hotels</a></li>
<li class = "sign"><a href ="./s_viewprofile.php">Hi, <?php echo $_SESSION['userName']; ?></a></li>
<li class="sign"><a href="./s_RegisterForm.html"><i class="fa-solid fa-user-plus"></i> Logout</a></li>
</ul>
</nav>
</header>
<br> <br> <br> <br> <br> <br>
<?php
include_once('dbh.inc.php');
if (isset($_POST['btn2'])) {
$name = $_SESSION['userName'];
$fullName = $_POST['fullName'];
$uName = $_POST['userName'];
$Email = $_POST['email'];
$pwd = $_POST['password'];
$type = $_POST['citizens'];
$gender = $_POST['gender'];
$nic = $_POST['nic'];
$phone = $_POST['contact'];
$result = mysqli_query($conn, "UPDATE users SET userName='$uName',fullName='$fullName',email='$Email', Password='$pwd', cType='$type', gender='$gender', nicPass='$nic', contactNo='$phone' WHERE userName='$name'");
header("location:s_viewprofile.php");
}
?>
<?php
$name = $_SESSION['userName'];
$result = mysqli_query($conn, "SELECT * FROM users WHERE userName='$name'");
if ($result) {
if (mysqli_num_rows($result) > 0) {
while ($row = mysqli_fetch_array($result)) {
$uName = $row['userName'];
$fullName = $row['fullName'];
$Email = $row['email'];
$pwd = $row['Password'];
$type = $row['cType'];
$gender = $row['gender'];
$nic = $row['nicPass'];
$phone = $row['contactNo'];
}
} else {
echo "No results found.";
}
} else {
echo "Query execution failed: " . mysqli_error($conn);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Edit Details</title>
</head>
<fieldset class="fieldset1">
<legend><h3><b>Your Details</b></h3></legend>
<form name="update_packages" action="s_profileEdit.php" method="post">
<label>User Name: </label><br>
<input type="text" name="userName" required value="<?php echo $_SESSION['userName']; ?>"><br><br>
<label for="fullName">Full Name:</label><br>
<input type="text" name="fullName" id="fullName" value="<?php echo $fullName; ?>" required><br><br>
<label for="email">Email Address:</label><br>
<input type="text" name="email" id="email" value="<?php echo $Email; ?>" required><br><br>
<label for="password">Password :</label><br>
<input type="password" name="password" id="password" value="<?php echo $pwd; ?>" required><br><br>
<label for="cType">Citizen Type:</label><br>
<input type="text" name="citizens" id="citizens" value="<?php echo $type; ?>" required><br><br>
<label for="gender">Gender :</label><br>
<input type="text" name="gender" id="gender" value="<?php echo $gender; ?>" required><br><br>
<label for="nic">NIC/Passport No:</label><br>
<input type="text" name="nic" id="nic" value="<?php echo $nic; ?>" required><br><br>
<label for="contact">Contact No:</label><br>
<input type="text" name="contact" id="contact" value="<?php echo $phone; ?>" required><br><br>
<input class="button bttn" type="submit" name="btn2" value="Update details" onclick="return confirmUpdate();">
</form>
</fieldset>
</div>
<br> <br> <br> <br> <br> <br>
<!--Footer-->
<footer>
<div class="Mcontent">
<div class="left box">
<h2>About Us</h2>
<div class="content">
<P>Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Delectus voluptates sapiente, consectetur id quos reiciendis
omnis, ab, ex unde sequi earum dignissimos. Sit architecto
blanditiis impedit dolores harum quam. Inventore sed eaque
libero et, similique repellendus exercitationem quos nihil
totam dolore, laudantium facilis nostrum modi assumenda hic
dolores, rerum nulla!</P>
<div class="social">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
<div class="terms">
<a href="#">Terms and conditions | </a>
<a href="#">Privacy policy | </a>
<a href="#">FAQ</a>
</div>
</div>
</div>
<div class="center box">
<h2>Contact Us</h2>
<div class="content">
<div class="place">
<span class="fas fa-map-marker-alt"></span>
<span class="text">
No.122/A Malabe, Colombo
</span>
</div>
<div class="phone">
<span class="fas fa-phone-alt"></span>
<span class="text">
+94773322443
</span>
</div>
<div class="email">
<span class="fas fa-envelope"></span>
<span class="text">
</span>
</div>
<div class="latest">
<img src="s_images/5.avif" alt="" width="100px" height="80px">
<img src="s_images/5.jpg" alt="" width="100px" height="80px">
<img src="s_images/6.jpg" alt="" width="100px" height="80px">
<img src="s_images/8.jpg" alt="" width="100px" height="80px">
</div>
</div>
</div>
<div class="right box">
<h2>News Letter</h2>
<div class="content">
<form action="">
<div class="email">
<input type="email" placeholder="Your Email" required>
</div>
<div class="btn">
<button type="submit">Send</button>
</div>
</form>
<div class="logo2">
<img src="s_images/download.png" alt="logo" width="32px" height="32px">
<h1>WILD<span>TREK</span></h1>
</div>
<div class="top">
<a href="#"><i class="fa-solid fa-arrow-up"></i></a>
</div>
</div>
</div>
</div>
<div class="bottom">
<div>
<span class="credit">
Designed & Developed By
<a href="">Team Wild-Trek</a>
|
</span>
<span>
©
</span>
<span>
2023 All Right Reserved
</span>
</div>
</div>
</footer>
<script src="s_js/main.js"></script>
<script src="s_js/main.js"></script>
<script>
function confirmUpdate() {
var txt = confirm("Are you sure?Do You want to Update?");
if(!txt) {
return false;
}
}
</script>
</body>
</html>