-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.php
More file actions
53 lines (46 loc) · 1.63 KB
/
service.php
File metadata and controls
53 lines (46 loc) · 1.63 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
<?php
$prd = 0;
if (isset($_SESSION['cart'])) {
$prd = count($_SESSION['cart']);
}
?>
<div class ="service">
<div class ="row">
<div class ="col-md-5">
<div class ="service-icon">
<i class ="fa fa-phone-square"></i>
</div>
<div class = "service-text">
<span>Đặt hàng nhanh</span><br>
<strong><a href = "tel: 01674249594">0167429594</a></strong>
</div>
</div>
<div class ="col-md-2">
<div class ="service-2">
<i class="glyphicon glyphicon-resize-horizontal"></i>
</div>
</div>
<div class ="col-md-5">
<div class ="service-icon">
<i class="fa fa-cart-plus"></i>
</div>
<div class = "service-text">
<span>Giỏ hàng</span><br>
<strong>
<?php if($prd == 0) {
echo '<a href="index.php">
';
}
else {
echo '<a href="view-cart.php"> ';
}
?>
<span class="glyphicon glyphicon-shopping-cart">
</span>
<span>(<?php echo $prd; ?>)</span>
</a>
<span><?php echo $prd;?></span> Sản phẩm</a></strong>
</div>
</div>
</div>
</div>