-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
42 lines (35 loc) · 1.63 KB
/
header.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
<header class="header">
<div class="flex">
<a href="home.php" class="logo">R&R</a>
<nav class="navbar">
<ul>
<li><a href="home.php">Home</a></li>
<li><a href="about.php">About-US</a></li>
<li><a href="contact.php">Feedbacks</a></li>
<li><a href="shop.php">Products</a></li>
<li><a href="orders.php">Orders</a></li>
<li><a href="login.php">Login</a></li>
</li>
</ul>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="user-btn" class="fas fa-user"></div>
<?php
$select_wishlist_count = mysqli_query($conn, "SELECT * FROM `wishlist` WHERE user_id = '$user_id'") or die('query failed');
$wishlist_num_rows = mysqli_num_rows($select_wishlist_count);
?>
<a href="wishlist.php"><span>❤<?php echo $wishlist_num_rows; ?></span></a>
<?php
$select_cart_count = mysqli_query($conn, "SELECT * FROM `cart` WHERE user_id = '$user_id'") or die('query failed');
$cart_num_rows = mysqli_num_rows($select_cart_count);
?>
<a href="cart.php"><span> 🛒<?php echo $cart_num_rows; ?></span></a>
</div>
<div class="account-box">
<p>username : <span><?php echo $_SESSION['user_name']; ?></span></p>
<p>email : <span><?php echo $_SESSION['user_email']; ?></span></p>
<a href="logout.php" class="delete-btn">logout</a>
</div>
</div>
</header>