-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.php
More file actions
83 lines (64 loc) · 2.64 KB
/
products.php
File metadata and controls
83 lines (64 loc) · 2.64 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
<?php include('./includes/header.php'); ?>
<!-- Start All Prodcuts -->
<div class="all-prod">
<div class="container">
<div class="sub-container pt-4 pb-4">
<div class="categ-header">
<div class="sub-title">
<span class="shape"></span>
<span class="title">Categories & Brands</span>
</div>
<h2>Browse By Category & Brand</h2>
</div>
<div class="row mx-0">
<div class="col-md-2 side-nav p-0">
<!-- side nav -->
<!-- brands to display -->
<ul class="navbar-nav me-auto ">
<li class="nav-item d-flex align-items-center gap-2">
<span class="shape"></span>
<a href="products.php" class="nav-link fw-bolder nav-title">
<h4>Brands</h4>
</a>
</li>
<?php
getBrands();
?>
</ul>
<div class="divider"></div>
<!-- categories to display -->
<ul class="navbar-nav me-auto ">
<li class="nav-item d-flex align-items-center gap-2">
<span class="shape"></span>
<a href="products.php" class="nav-link fw-bolder nav-title">
<h4>Categories</h4>
</a>
</li>
<?php
getCategories();
?>
</ul>
</div>
<div class="col-md-10">
<!-- products -->
<div class="row">
<?php
getProduct();
filterCategoryProduct();
filterBrandProduct();
$ip=getIPAddress();
cart();
?>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End All Prodcuts -->
<!-- divider -->
<!-- <div class="container">
<div class="divider"></div>
</div> -->
<!-- divider -->
<?php include('./includes/footer.php'); ?>