-
Notifications
You must be signed in to change notification settings - Fork 0
/
userProfile.php
executable file
·150 lines (148 loc) · 6.29 KB
/
userProfile.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
<?php
include "includes/db.php";
session_start();
$connect = mysqli_connect("localhost", "root", "", "emeal");
$nickname = $_SESSION['user'];
$query = "SELECT * FROM user WHERE userNickname = '$nickname'";
$result = mysqli_query($connect,$query);
$row = mysqli_fetch_array($result);
$gender = $row['userGender'];
$dob = $row['userDob'];
$email = $row['userEmail'];
$contact = $row['userContact'];
$address = $row['userAddress'];
$postalcode = $row['userPostalcode'];
$state = $row['userState'];
$ccupation = $row['userOccupation'];
$profileimg = $row['userProfilepic'];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>eMeal - Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Signika" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<script type="text/javascript" src="https://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5ab88174f9a49214"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
<?php if(isset($_SESSION['user'])&&!empty($_SESSION['user'])){?>
$(document).ready(function(){
$("#sign").hide();
$("#user").show();
});
<?php }?>
</script>
</head>
<body>
<div id="navigation">
<div id="title">
<div class="addthis_inline_share_toolbox_20fu"></div>
<p>e<span>MEAL</span></p>
<div id="sign">
<ul>
<li><a href="login.html">Sign in</a></li>
<li><a href="signup.php">Sign up</a></li>
</ul>
</div>
<div id="user">
<ul>
<li>
Welcome, <a><?php echo $_SESSION['user']?></a>
<ul class="subnav2">
<li><a href="userProfile.php">Profile</a></li>
<li><a href="includes/logout.php">Log out</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="get_nav"></div>
<div id="shoppingcart">
<a href="shoppingcart.php">
<img src="img/713b83a7ab70e1a79d66d49efc33aff6.png">
<p>Shopping cart</p>
</a>
</div>
</div>
<div class="clearfloat"></div>
<div class="gray">
<div class="tabbar">
<ol class="breadcrumb">
<li ><a href="userProfile.php">Profile</a></li>
<li class="active">Personal profile</li>
</ol>
</div>
<div class="container">
<div class="row">
<div class="col-md-2">
<div class="profile-menu">
<div class="leftprofile">
<img src="<?php echo $profileimg;?>" alt="profile image">
</div>
<div class="accounttab">
<p><a class="accountp" href="userProfile.php">Personal Profile</a></p>
<p><a class="accountp" href="userProfileEdit.php">Edit Profile</a></p>
<p><a class="accountp" href="recipeUpload.php">Upload Recipe</a></p>
<p><a class="accountp" href="viewRecipe.php">View Recipe</a></p>
<p><a class="accountp" href="viewhistory.php">Order History</a></p>
</div>
</div>
</div>
<div class="col-md-10">
<div class="profileinfo">
<table class="showinfo">
<tr>
<td>Nick name:</td>
<td><?php echo $_SESSION['user'];
?>
</td>
</tr>
<tr>
<td>Gender:</td>
<td><?php echo $gender;?></td>
</tr>
<tr>
<td>Date of birth:</td>
<td><?php echo $dob;?></td>
</tr>
<tr>
<td>Email:</td>
<td><?php echo $email;?></td>
</tr>
<tr>
<td>Contact:</td>
<td><?php echo $contact;?></td>
</tr>
<tr>
<td>Address:</td>
<td><?php echo $address;?></td>
</tr>
<tr>
<td>Postal code:</td>
<td><?php echo $postalcode;?></td>
</tr>
<tr>
<td>State:</td>
<td><?php echo $state;?></td>
</tr>
<tr>
<td>Occupation:</td>
<td><?php echo $ccupation;?></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>©2018 eMeal Company. All Rights Reserved</p>
</div>
</body>
</html>