-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay_all.php
More file actions
171 lines (136 loc) · 6.08 KB
/
display_all.php
File metadata and controls
171 lines (136 loc) · 6.08 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
include('includes/connect.php');
include('functions/common_function.php');
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SAIM - Products</title>
<!-- bootstrap CSS link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<!-- font awesome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css" integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- css file -->
<link rel = "stylesheet" href = "style.css">
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
overflow-x: hidden;
}
.logo {
width:4%;
height:2%;
}
</style>
</head>
<body>
<div class = "container-fluid p-0">
<!-- first child -->
<nav class="navbar navbar-expand-lg navbar-light bg-info">
<!-- navbar -->
<div class="container-fluid">
<img src = "./images/logo.png" alt = "" class = "logo">
<button class="navbar-toggler" type="button" data-b s-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="display_all.php">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./users_area/user_registration.php">Register</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cart.php"><i class="fa-solid fa-cart-shopping"></i><sup><?php cartItems(); ?></sup></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Total Price: <?php cartTotalPrice(); ?>/-</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search"/>
<button class="btn btn-outline-light" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- second child -->
<nav class="navbar navbar-expand-lg navbar-dark bg-secondary">
<ul class = "navbar-nav me-auto">
<?php
if(!isset($_SESSION['username'])) {
echo "<li class='nav-item'><a class='nav-link' href='#'>Welcome Guest</a></li>";
} else {
echo "<li class='nav-item'><a class='nav-link' href='#'>Welcome ".$_SESSION['username']."</a></li>";
}
if(!isset($_SESSION['username'])) {
echo "<li class='nav-item'><a class='nav-link' href='./users_area/user_login.php'>Login</a></li>";
} else {
echo "<li class='nav-item'><a class='nav-link' href='./users_area/user_logout.php'>Logout</a></li>";
}
?>
</ul>
</nav>
<!--third child -->
<div class = "bg-light py-2">
<h3 class="text-center">Online Store</h3>
<p class="text-center">Communication is at the heart of e-commerce and community</p>
</div>
<!-- fourth child -->
<div class="row px-1">
<!-- products -->
<div class="col-md-10">
<div class="row">
<!-- fetching products -->
<?php
getAllProducts();
getUniqueCategories();
getUniqueBrands();
?>
</div>
</div>
<!-- sidenav -->
<div class="col-md-2 bg-secondary p-0">
<!-- brands to be displayed -->
<ul class="navbar-nav me-auto text-center">
<li class="nav-item bg-info">
<a href="#" class="nav-link text-light"><h4>Delivery Brands</h4></a>
</li>
<?php
getBrands();
?>
</ul>
<!-- categories to be displayed -->
<ul class="navbar-nav me-auto text-center">
<li class="nav-item bg-info">
<a href="#" class="nav-link text-light"><h4>Categories</h4></a>
</li>
<?php
getCategories();
?>
</ul>
</div>
</div>
<!-- include footer file -->
<?php
include("./includes/footer.php")
?>
</div>
<!-- bootstrap js link -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/js/bootstrap.bundle.min.js" integrity="sha384-ndDqU0Gzau9qJ1lfW4pNLlhNTkCfHzAVBReH9diLvGRem5+R9g2FzA8ZGN954O5Q" crossorigin="anonymous"></script>
</body>
</html>