-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproduct.php
More file actions
53 lines (53 loc) · 2.09 KB
/
product.php
File metadata and controls
53 lines (53 loc) · 2.09 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
<div class="col-12 col-sm-6 col-lg-3 product-wrapper m-b-40 product">
<div class="thumb">
<a class="load-product cursor-pointer image" id_product="<?php echo $id?>">
<img class="fit-image p-10" id="img-product<?php echo $id ?>" src="./assets/images/products/<?php echo $image ?>" alt="Product" />
</a>
<?php
if ($discount > 0) {
$discount_price = $price - ($price * $discount / 100);
?>
<span class="badges">
<span class="sale"><?php echo (int)$discount ?> %</span>
</span>
<?php
}
?>
<div class="action-wrapper" id="wrapper<?php echo $id ?>">
<a class="action" id="plus_product" title="Thêm sản phẩm"><i class="fa-regular fa-plus-large"></i></a>
<a class="action wishlist" title="Wishlist"><i class="fa-regular fa-heart"></i></a>
<a class="nav-content cursor-pointer action cart" id="viewcart" title="Cart"><i class="fa-regular fa-cart-circle-plus"></i></a>
</div>
</div>
<div class="content">
<h5 class="title"><a class="product-title"><?php echo $name ?></a></h5>
<span class="rating">
<?php
$temp = $ranking;
for ($j = 0; $j < 5; $j++) {
if ($temp > 2) {
echo "<i class='fa-solid fa-star' style='color: #ffad42'></i>";
$temp -= 2;
} else if ($temp > 0) {
echo "<i class='fa-solid fa-star-half' style='color: #ffad42'></i>";
$temp = 0;
}
}
?>
</span>
<span class="price">
<?php
if ($discount > 0) {
?>
<span class="new">$<?php echo $discount_price ?></span>
<span class="old">$<?php echo $price ?></span>
<?php
} else {
?>
<span class='new'>$<?php echo $price ?></span>
<?php
}
?>
</span>
</div>
</div>