-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNavigationBar.php
More file actions
executable file
·25 lines (24 loc) · 886 Bytes
/
NavigationBar.php
File metadata and controls
executable file
·25 lines (24 loc) · 886 Bytes
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
<div id="header">
<div id="left">
<label><a href="Homepage.php">E-Shop</a> </label>
</div>
<div id="right">
<div id="content">
<?php
if(isset($_SESSION['user']))
{
$res=mysqli_query($connection,"SELECT * FROM users WHERE user_id=".$_SESSION['user']);
$userRow=mysqli_fetch_array($res);
echo '<img src="'.$userRow['imgage'].'" align="left" style="margin-top:-15px; margin-right:10px;" >';
echo ' Hi ';
echo $userRow['username'];
echo ' <a href="UserHistory.php">History</a>';
echo ' <a href="EditProfile.php">Edit Profile</a>';
echo ' <a href="Logout.php?logout">Sign Out</a>';
}else {
echo 'Guest';
echo ' <a href="Login.php">Login</a>';
} ?>
</div>
</div>
</div>