-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.php
115 lines (110 loc) · 2.48 KB
/
cart.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
<?php include 'inc/header.php'; ?>
<div class="main">
<div class="content">
<div class="cartoption">
<div class="cartpage">
<h2>Your Cart</h2>
<table class="tblone">
<tr>
<th width="20%">Product Name</th>
<th width="10%">Image</th>
<th width="15%">Price</th>
<th width="25%">Quantity</th>
<th width="20%">Total Price</th>
<th width="10%">Action</th>
</tr>
<tr>
<td>Product Title</td>
<td><img src="images/new-pic3.jpg" alt=""/></td>
<td>Tk. 20000</td>
<td>
<form action="" method="post">
<input type="number" name="" value="1"/>
<input type="submit" name="submit" value="Update"/>
</form>
</td>
<td>Tk. 40000</td>
<td><a href="">X</a></td>
</tr>
<tr>
<td>Product Title</td>
<td><img src="images/new-pic3.jpg" alt=""/></td>
<td>Tk. 20000</td>
<td>
<form action="" method="post">
<input type="number" name="" value="1"/>
<input type="submit" name="submit" value="Update"/>
</form>
</td>
<td>Tk. 40000</td>
<td><a href="">X</a></td>
</tr>
<tr>
<td>Product Title</td>
<td><img src="images/new-pic3.jpg" alt=""/></td>
<td>Tk. 20000</td>
<td>
<form action="" method="post">
<input type="number" name="" value="1"/>
<input type="submit" name="submit" value="Update"/>
</form>
</td>
<td>Tk. 40000</td>
<td><a href="">X</a></td>
</tr>
<tr>
<td>Product Title</td>
<td><img src="images/new-pic3.jpg" alt=""/></td>
<td>Tk. 20000</td>
<td>
<form action="" method="post">
<input type="number" name="" value="1"/>
<input type="submit" name="submit" value="Update"/>
</form>
</td>
<td>Tk. 40000</td>
<td><a href="">X</a></td>
</tr>
<tr>
<td>Product Title</td>
<td><img src="images/new-pic3.jpg" alt=""/></td>
<td>Tk. 20000</td>
<td>
<form action="" method="post">
<input type="number" name="" value="1"/>
<input type="submit" name="submit" value="Update"/>
</form>
</td>
<td>Tk. 40000</td>
<td><a href="">X</a></td>
</tr>
</table>
<table style="float:right;text-align:left;" width="40%">
<tr>
<th>Sub Total : </th>
<td>TK. 210000</td>
</tr>
<tr>
<th>VAT : </th>
<td>TK. 31500</td>
</tr>
<tr>
<th>Grand Total :</th>
<td>TK. 241500 </td>
</tr>
</table>
</div>
<div class="shopping">
<div class="shopleft">
<a href="index.php"> <img src="images/shop.png" alt="" /></a>
</div>
<div class="shopright">
<a href="login.php"> <img src="images/check.png" alt="" /></a>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<?php include 'inc/footer.php'; ?>