-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
80 lines (47 loc) · 1.96 KB
/
header.php
File metadata and controls
80 lines (47 loc) · 1.96 KB
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
<!-- script for daisy and tailwind -->
<?php
if(isset($message)){
foreach($message as $message){
echo '
<div class="message">
<span>'.$message.'</span>
<i class="fas fa-times" onclick="this.parentElement.remove();"></i>
</div>
';
}
}
?>
<header class="header">
<div class="header-1">
<div class="flex ">
<p class="pp"> <a href="login.php">Login</a> <a href="register.php">SignUp</a> </p>
</div>
</div>
<div class="animated-line"></div>
<div class="header-2">
<div class="flex ">
<a href="home.php" class="logo sm:text-6xl " style="text-align: center;">COMPUTER <br>ACCESSORIES STORE </a>
<nav class="navbar justify-center">
<a href="home.php">home</a>
<a href="shop.php">shop</a>
<!-- <a href="contact.php">contact</a> -->
<a href="orders.php">orders</a>
</nav>
<div class="icons flex-none">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="search_page.php" class="fas fa-search"></a>
<?php
$select_cart_number = mysqli_query($conn, "SELECT * FROM `cart` WHERE user_id = '$user_id'") or die('query failed');
$cart_rows_number = mysqli_num_rows($select_cart_number);
?>
<a href="cart.php"> <i class="fas fa-shopping-cart"></i> <span>(<?php echo $cart_rows_number; ?>)</span> </a>
<button><a href="logout.php"class="fa-solid fa-right-from-bracket" style="color: #050505;"></a></button>
</div>
<div class="user-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>
</div>
</header>