-
Notifications
You must be signed in to change notification settings - Fork 0
/
product_details.php
153 lines (134 loc) · 5.16 KB
/
product_details.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
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
<!-- connect file -->
<?php
include('includes/connect.php');
include('functions/common_function.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ecommerce Website using PHP and MySQL</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- font awesome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- css files -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- navbar -->
<div class="container-fluid p-0">
<!-- first child -->
<nav class="navbar navbar-expand-lg navbar-light bg-info">
<div class="container-fluid">
<img src="./images/logo.jpg" alt="" class="logo">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Register</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><i class="fas fa-shopping-cart"><sup>
<?php
cart_item();
?>
</sup></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Total Price:100/-</a>
</li>
</ul>
<form class="d-flex" action="search_product.php" method="get">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search" name="search_data">
<!-- <button class="btn btn-outline-light" type="submit">Search</button> -->
<input type="submit" value="Search" class="btn btn-outline-light" name="search_data_product">
</form>
</div>
</nav>
<!-- second child -->
<nav class="navbar navbar-expand-lg navbar-dark bg-secondary">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="#">Welcome Guest</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./users_area/user_login.php">Login</a>
</li>
</ul>
</nav>
<!-- third child -->
<div class="bg-light">
<h3 class="text-center">
Hidden Store
</h3>
<p class="text-center">
Communications is at the heart of e-commerce
</p>
</div>
<!-- fourth child -->
<div class="row px-1">
<div class="col-md-10">
<!-- products -->
<div class="row">
<?php
view_details();
get_unique_categories();
get_unique_brands();
?>
<!-- row end -->
</div>
<!-- col end -->
</div>
<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>
<!-- last child -->
<!-- <div class="bg-info p-3 text-center">
<p>All rights reserved</p>
</div> -->
</div>
</div>
<!-- bootstrap js link -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>