-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay_all.php
More file actions
175 lines (150 loc) · 5.43 KB
/
display_all.php
File metadata and controls
175 lines (150 loc) · 5.43 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
172
173
174
175
<!-- connect file-->
<?php
include('includes/connect.php');
include('functions/common_functions.php');
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Commerce Website</title>
<!-- bootstrap css link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
<!-- font awsome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- css link -->
<link rel="stylesheet" href="style.css">
<style>
body{
overflow-x: hidden;
}
</style>
</head>
<body>
<!-- navbar -->
<div class="container-fluid p-0">
<!-- first child -->
<nav class="navbar navbar-expand-lg bg-info">
<div class="container-fluid">
<img src="./images/logo.jpg" alt="" class="logo">
<button class="navbar-toggler" type="button" data-bs-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>
<?php
if(isset($_SESSION['username'])){
echo " <li class='nav-item'>
<a class='nav-link' href='./users_area/profile.php'>My Account</a>
</li>";
}else{
echo" <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 cart_item(); ?></sup></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Total Price: <?php total_cart_price(); ?>/-</a>
</li>
</ul>
<form class="d-flex" role="search" action="search_product.php" method="get">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search" name="search_data">
<input type="submit" value="search" class="btn btn-outline-light" name="search_data_product">
</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/logout.php'>Logout</a>
</li>";
}
?>
</ul>
</nav>
<!-- third child -->
<div class="bg-light">
<h3 class="text-center">
Hidden Store
</h3>
<p class="text-center">
Communication is at the heart of e-commerce and community
</p>
</div>
<!-- fourth child -->
<div class="row px-3">
<div class="col-md-10">
<!-- products -->
<div class="row">
<!-- fetching products -->
<?php
// calling function
getAllProducts();
getUniqueCate();
getUniqueBrands();
?>
<!-- row end -->
</div>
<!-- col end -->
</div>
<div class="col-md-2 bg-secondary p-0">
<!-- sidenavbar -->
<!-- brand to be displayed on screen-->
<ul class="navbar-nav me-auto text-center">
<li class="nav-item bg-info">
<a href="#" class="nav-link"><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"><h4>Categories</h4></h4></a>
</li>
<?php
getCategories();
?>
</ul>
</div>
</div>
<!-- last child -->
<?php include("./includes/footer.php"); ?>
</div>
<!-- bootstrap js link -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>