-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustomer_navbar.php
64 lines (43 loc) · 1.32 KB
/
customer_navbar.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
<?php
include "connect.php";
if(!isset($_SESSION)) {
session_start();
}
if (isset($_SESSION['loggedIn_cust_id'])) {
$sql0 = "SELECT * FROM customer WHERE cust_id=".$_SESSION['loggedIn_cust_id'];
$result = $conn->query($sql0);
$row = $result->fetch_assoc();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="user_navbar_style.css">
<script src="jquery-3.2.1.min.js"></script>
</head>
<body>
<div class="nav-wrapper">
<div class="topnav" id="theTopNav">
<a href="javascript:void(0);" class="icon" onclick="openNav()" id="hamburger">
☰
</a>
<a id="user">Welcome,  <?php echo $row["first_name"]; ?> !</a>
<a id="logout" href="logout_action.php" onclick="return confirm('Are you sure?')">Logout</a>
<a id="profile" href="customer_profile.php">My Profile</a>
</div>
</div>
<script>
$(document).ready(function() {
$(window).scroll(function () {
if ($(window).scrollTop() > 120) {
$("#theTopNav").addClass('navbar-fixed');
}
if ($(window).scrollTop() < 121) {
$("#theTopNav").removeClass('navbar-fixed');
}
});
});
</script>
</body>
</html>