-
Notifications
You must be signed in to change notification settings - Fork 29
/
profile.php
143 lines (109 loc) · 4.14 KB
/
profile.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
<?php
include("login.php");
// if($_SESSION['loggedin']==true){
// header("location:loginindex.html");
// }
if($_SESSION['name']==''){
header("location: signup.php");
}
?>
<!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>Document</title> -->
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="profile.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="logo">Food <b style="color: #06C167;">Donate</b></div>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<nav class="nav-bar">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html" >About</a></li>
<li><a href="contact.html" >Contact</a></li>
<li><a href="profile.php" class="active">Profile</a></li>
</ul>
</nav>
</header>
<script>
hamburger=document.querySelector(".hamburger");
hamburger.onclick =function(){
navBar=document.querySelector(".nav-bar");
navBar.classList.toggle("active");
}
</script>
<div class="profile">
<!-- <section class="cover" >
</section>
-->
<div class="profilebox" style="">
<p class="headingline" style="text-align: left;font-size:30px;"> <img src="" alt="" style="width:40px; height: height: 25px;; padding-right: 10px; position: relative;" >Profile</p>
<!--
<img src="user.png" alt="" style=" width: 90px;
height: 90px;
/* border-radius:50% ; */
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
/* border: 1px solid #06C167; */
">
<br> -->
<!-- <p style="font-size: 28px;">welcome</p> -->
<!-- <p style="color: #06C167;">username</p> -->
<br>
<div class="info" style="padding-left:10px;">
<p style="">Name :<?php echo"". $_SESSION['name'] ;?> </p><br>
<p style="">Email :<?php echo"". $_SESSION['email'];?> </p><br>
<p style="">Gender:<?php echo"". $_SESSION['gender'] ;?> </p><br>
<!-- <p style="font-family: 'Times New Roman', Times, serif;">gender :<?php echo"". $_SESSION['gender'] ;?> </p><br> -->
<a href="logout.php" style="float: left;margin-top: 6px ;border-radius:5px; background-color: #06C167; color: white;padding: ;padding-left: 10px;padding-right: 10px;">Logout</a>
</div>
<br>
<br>
<hr>
<br>
<p class="heading">Your donations</p>
<!-- <p class="" style="font-family: 'Times New Roman', Times, serif; font-size: 20px;">Your donations</p><br> -->
<!-- <img src="profilecover1.jpg" alt="" width='100%' height='auto'> -->
<div class="table-container">
<!-- <p id="heading">donated</p> -->
<div class="table-wrapper">
<table class="table">
<thead>
<tr>
<th>food</th>
<th>Type</th>
<th>Category</th>
<th>date/time</th>
</tr>
</thead>
<tbody>
<?php
$email=$_SESSION['email'];
$query="select * from food_donations where email='$email'";
$result=mysqli_query($connection, $query);
if($result==true){
while($row=mysqli_fetch_assoc($result)){
echo "<tr><td>".$row['food']."</td><td>".$row['type']."</td><td>".$row['category']."</td><td>".$row['date']."</td></tr>";
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>