-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserProfileEdit.php
executable file
·190 lines (187 loc) · 9.27 KB
/
userProfileEdit.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
<?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 - Edit 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="jquery-1.11.1.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.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>
<script>
function F_Open_file(id){
document.getElementById(id).click();
}
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#profile-img')
.attr('src', e.target.result);
}; reader.readAsDataURL(input.files[0]);
}
}
</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="gray">
<div class="tabbar">
<ol class="breadcrumb">
<li><a href="userProfile.php">Profile</a></li>
<li class="active">Edit 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">
<form method="POST" action="includes/uploadProfile.php" enctype="multipart/form-data">
<div class="profileinfo">
<table class="profile-info">
<tr>
<td class="infotab">Profile picture:</td>
<td>
<img id="profile-img" src="<?php echo $profileimg;?>" alt="profile image" onclick="F_Open_file('imageUpload')">
<input id="imageUpload" type="file" accept="image/gif, image/jpeg, image/png" name="imageUpload" onchange="readURL(this);">
</td>
</tr>
<tr>
<td class="infotab">Nick name:</td>
<td><div class="info">
<?php echo $_SESSION['user']?>
</div></td>
</tr>
<tr>
<td class="infotab">Gender:</td>
<td><div class="info">
<?php
if ($gender == NULL){?>
<input type="radio" value="Female" name="gender"> Female
<input type="radio" value="Male" name="gender"> Male
<?php }else if($gender == "Female"){?>
<input type="radio" value="Female" name="gender" checked> Female
<input type="radio" value="Male" name="gender"> Male
<?php }else if($gender == "Male"){?>
<input type="radio" value="Female" name="gender"> Female
<input type="radio" value="Male" name="gender" checked> Male
<?php }?>
</div>
</td>
</tr>
<tr>
<td class="infotab">Date of birth:</td>
<td><input class="info" type="date" name="dob" placeholder="YYYY-MM-DD" value="<?php echo $dob;?>"></td>
</tr>
<tr>
<td class="infotab">Email:</td>
<td><div class="info">
<?php echo $email;?>
</div></td>
</tr>
<tr>
<td class="infotab">Contact:</td>
<td><input class="info" type="text" name="contact" value="<?php echo $contact;?>"></td>
</tr>
<tr>
<td class="infotab">Address:</td>
<td><input class="info" type="text" name="address" value="<?php echo $address;?>"></td>
</tr>
<tr>
<td class="infotab">Postal code:</td>
<td><input class="info" type="text" name="postalcode" value="<?php echo $postalcode;?>"></td>
</tr>
<tr>
<td class="infotab">State:</td>
<td><input class="info" type="text" name="state" value="<?php echo $state;?>"></td>
</tr>
<tr>
<td class="infotab">Occupation:</td>
<td><input class="info" type="text" name="occupation" value="<?php echo $ccupation;?>"></td>
</tr>
</table>
<input class="infosave" type="submit" value="Save" name="submit">
</div>
</form>
</div>
</div>
</div>
</div>
<div id="footer">
<p>©2018 eMeal Company. All Rights Reserved</p>
</div>
</body>
</html>