-
Notifications
You must be signed in to change notification settings - Fork 2
/
profile1.php
136 lines (104 loc) · 4.34 KB
/
profile1.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
<!DOCTYPE html>
<!--
Transit by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Generic - Transit by TEMPLATED</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
</head>
<body>
<!-- Header -->
<!-- Header -->
<?php include('navbar.php') ?>
<!-- Main -->
<section id="main" class="wrapper">
<div class="container">
<header class="major">
<h2>Profile</h2>
<p>Hey !!!! Here is your Profile</p>
</header>
<h2 style="text-align:center">User Profile Card</h2>
<div class="card" align="center">
<img src="images/person.png" alt="person" style="width:20%">
<!-- <h1>John Doe</h1>
<p class="title">CEO & Founder, Example</p>
<p>Harvard University</p>
<div style="margin: 24px 0;">
<a href="#"><i class="fa fa-dribbble"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
</div>
<p><button>Contact</button></p> -->
</div>
<!-- <h3>Change password</h3><a href="changepwd.php">Click Here</a><br><br>
<a href="balance.php">Check Balance</a> -->
<?php
$query="SELECT * FROM customer_details WHERE cust_id='".$_SESSION['user']['cust_id']."'";
echo $_SESSION['user']['cust_id'];
$exec=mysqli_query($connect,$query) or die(mysqli_error($connect));
if(mysqli_num_rows($exec)>0){
//echo "no of users signed up=".mysqli_num_rows($exec);
?>
<table align='center' cellpadding="5" border="7" cellspacing="0" style="background-color:#grey">
<thead>
<tr>
<th>FIRST NAME</th>
<th>LAST NAME</th>
<th>B'DAY</th>
<th>AGE</th>
<th>PASS</th>
<th>HOME_NO</th>
<th>STREET</th>
<th>CITY</th>
<th>PH NO</th>
<th>MOB NO</th>
</tr>
</thead>
<tbody>
<?php
while($_SESSION['user']=mysqli_fetch_array($exec))
{
?>
<tr>
<td><?php echo $_SESSION['user']['first_name'] ?> </td><br>
<td><?php echo $_SESSION['user']['last_name'] ?> </td><br>
<td><?php echo $_SESSION['user']['birthdate'] ?> </td><br>
<td><?php echo $_SESSION['user']['age'] ?> </td><br>
<td><?php echo $_SESSION['user']['password'] ?> </td><br>
<td><?php echo $_SESSION['user']['home_no'] ?> </td><br>
<td><?php echo $_SESSION['user']['street'] ?> </td><br>
<td><?php echo $_SESSION['user']['city'] ?> </td><br>
<td><?php echo $_SESSION['user']['city'] ?> </td><br>
<td><?php echo $_SESSION['user']['ph_no'] ?> </td><br>
<td><?php echo $_SESSION['user']['mob_no'] ?> </td><br>
<!-- <td><a href="delete.php?id=<?php// echo $SESSION_['id']?>&delete=1$myname=raj" onclick="return confirm('Are you sure you want to delete mr/ms. <?php// echo $each_signup['email']?>')"><img src="delete.png"></a></td>
<td><a href="update.php?id=<?php// echo $each_signup['id']?>&delete=1$myname=raj" onclick="return confirm('Are you sure you want to edit mr/ms. <?php// echo $each_signup['email']?>')"><img src="edit.svg"></a></td>
<td><a href="chngpass.php?id=<?php// echo $each_signup['id']?>&delete=1$myname=raj" onclick="return confirm('Are you sure you want to change pass of mr/ms. <?php// echo $each_signup['email']?>')">change</a></td> -->
</tr>
<?php
}
}
?>
</div>
</section>
<!-- Footer -->
<?php include('footer.php'); ?>
</body>
</html>