-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.php
240 lines (204 loc) · 12.4 KB
/
shop.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<?php
include_once "includes/header.php";
// Include the database configuration
include 'config/config.php';
?>
<?php
// Fetch all categories from the database
$stmt = $conn->prepare("SELECT * FROM categories");
$stmt->execute();
$categories = $stmt->fetchAll(PDO::FETCH_ASSOC);
// Fetching the most wanted products from the database
$stmt = $conn->prepare("SELECT * FROM products ORDER BY views DESC LIMIT 6");
$stmt->execute();
$most_wanted_products = $stmt->fetchAll(PDO::FETCH_ASSOC);
// Function to get products by category
function getProductsByCategory($conn, $category_id) {
$stmt = $conn->prepare("
SELECT p.*, c.name as category_name
FROM products p
JOIN categories c ON p.category_id = c.id
WHERE p.category_id = :category_id
");
$stmt->execute([':category_id' => $category_id]);
return $stmt->fetchAll(PDO::FETCH_ASSOC);
}
?>
<div id="page-content" class="page-content">
<div class="banner">
<div class="jumbotron jumbotron-bg text-center rounded-0" style="background-image: url('assets/img/bg-header.jpg');">
<div class="container">
<h1 class="pt-5">
Shopping Page
</h1>
<p class="lead">
Save time and leave the groceries to us.
</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="shop-categories owl-carousel mt-5">
<?php foreach ($categories as $category): ?>
<div class="item">
<a href="shop.php?category=<?= urlencode($category['name']); ?>">
<div class="media d-flex align-items-center justify-content-center flex-column text-center" style="height: 100%;">
<span class="d-flex mr-2">
<img
src="assets/img/categories/<?= htmlspecialchars($category['icon']); ?>"
alt="<?= htmlspecialchars($category['name']); ?>"
style="height: 50px; width: 50px; object-fit: cover;"
>
</span>
<div class="media-body">
<h5><?= htmlspecialchars($category['name']); ?></h5>
<p><?= htmlspecialchars($category['description']); ?></p>
</div>
</div>
</a>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
<section id="most-wanted">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="title">Most Wanted</h2>
<div class="product-carousel owl-carousel">
<?php foreach ($most_wanted_products as $product): ?>
<div class="item">
<div class="card card-product">
<div class="card-ribbon">
<div class="card-ribbon-container right">
<span class="ribbon ribbon-primary">SPECIAL</span>
</div>
</div>
<div class="card-badge">
<div class="card-badge-container left">
<!-- Show expiration badge if applicable -->
<?php if ($product['expiration_date'] < date('Y-m-d')): ?>
<span class="badge badge-default">
Expired
</span>
<?php else: ?>
<span class="badge badge-default">
Until <?= date('Y', strtotime($product['expiration_date'])); ?>
</span>
<?php endif; ?>
<!-- Display the discount if applicable -->
<?php if ($product['discount'] >= 0): ?>
<span class="badge badge-primary">
<?= $product['discount']; ?>% OFF
</span>
<?php endif; ?>
</div>
<img
src="assets/img/<?= htmlspecialchars($product['image']); ?>"
alt="<?= htmlspecialchars($product['name']); ?>"
class="card-img-top"
style="height: 250px; width: 100%; object-fit: cover;"
>
</div>
<div class="card-body">
<h4 class="card-title">
<a href="detail-product.php?id=<?= htmlspecialchars($product['id']); ?>"><?= htmlspecialchars($product['name']); ?></a>
</h4>
<div class="card-price">
<?php
$discounted_price = $product['price'] * (1 - $product['discount'] / 100);
?>
<span class="discount">USD. <?= number_format($product['price'], 2, ',', '.'); ?></span>
<span class="reguler">USD. <?= number_format($discounted_price, 2, ',', '.'); ?></span>
</div>
<a href="detail-product.php?id=<?= htmlspecialchars($product['id']); ?>" class="btn btn-block btn-primary">
Add to Cart
</a>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>
<!-- Displaying Products By Categories -->
<?php foreach($categories as $category): ?>
<?php
// Fetch products for the current category
$products = getProductsByCategory($conn, $category['id']);
// Only display the section if there are products in the category
if (!empty($products)):
?>
<section id="<?= htmlspecialchars($category['name']); ?>" class="gray-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="title"><?= htmlspecialchars($category['name']); ?></h2>
<div class="product-carousel owl-carousel">
<?php
foreach ($products as $product):
?>
<div class="item">
<div class="card card-product">
<div class="card-ribbon">
<div class="card-ribbon-container right">
<span class="ribbon ribbon-primary">SPECIAL</span>
</div>
</div>
<div class="card-badge">
<div class="card-badge-container left">
<?php if ($product['expiration_date'] < date('Y-m-d')): ?>
<span class="badge badge-default">
Expired
</span>
<?php else: ?>
<span class="badge badge-default">
Until <?= date('Y', strtotime($product['expiration_date'])); ?>
</span>
<?php endif; ?>
<span class="badge badge-primary">
<?= $product['discount']; ?>% OFF
</span>
</div>
<img
src="assets/img/<?= htmlspecialchars($product['image']); ?>"
alt="<?= htmlspecialchars($product['name']); ?>"
class="card-img-top fixed-height-img"
style="height: 250px; width: 100%; object-fit: cover;"
>
</div>
<div class="card-body">
<h4 class="card-title">
<a href="detail-product.php?id=<?= htmlspecialchars($product['id']); ?>"><?= htmlspecialchars($product['name']); ?></a>
</h4>
<div class="card-price">
<?php
$discounted_price = $product['price'] * (1 - $product['discount'] / 100);
?>
<span class="discount">USD. <?= number_format($product['price'], 2, ',', '.'); ?></span>
<span class="reguler">USD. <?= number_format($discounted_price, 2, ',', '.'); ?></span>
</div>
<a href="detail-product.php?id=<?= htmlspecialchars($product['id']); ?>" class="btn btn-block btn-primary">
Add to Cart
</a>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php endforeach; ?>
</div>
<?php
include_once "includes/footer.php";
?>