forked from prajwals420/Mumbai-Local-Train-Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyprofile.php
56 lines (40 loc) · 1 KB
/
myprofile.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
<?php
include 'connect.php' ;
session_start();
if ($_SESSION['log'] == '')
{
header("location:sindex.php");
}
include 'header.php';
?>
<h2><center><img src="https://img.icons8.com/dusk/50/000000/checked-user-male.png"/><b>USER PROFILE DETAILS</center></b></h2>
</script>
<br>
<table class="table table-striped">
<tr>
<th>Name</th>
<td><?php echo $_SESSION['name'] ?></td>
</tr>
<tr>
<th>Email</th>
<td><?php echo $_SESSION['email'] ?></td>
</tr>
<tr>
<th>User Id</th>
<td><?php echo $_SESSION['userid'] ?></td>
</tr>
<tr>
<th>Gender</th>
<td><?php echo $_SESSION['Gender'] ?></td>
</tr>
<tr>
<th>Date of Birth</th>
<td><?php echo $_SESSION['dob'] ?></td>
</tr>
<tr>
<th>Contact Number</th>
<td><?php echo $_SESSION['phone'] ?></td>
</tr>
</table>
<?php include 'footer.php';
?>