001.
<?php
002.
session_start();
003.
require
'connect.php'
;
004.
005.
$action
= isset(
$_GET
[
'a'
]) ?
$_GET
[
'a'
] :
""
;
006.
$itemCount
= isset(
$_SESSION
[
'cart'
]) ?
count
(
$_SESSION
[
'cart'
]) : 0;
007.
if
(isset(
$_SESSION
[
'qty'
]))
008.
{
009.
$meQty
= 0;
010.
foreach
(
$_SESSION
[
'qty'
]
as
$meItem
)
011.
{
012.
$meQty
=
$meQty
+
$meItem
;
013.
}
014.
}
else
015.
{
016.
$meQty
= 0;
017.
}
018.
if
(isset(
$_SESSION
[
'cart'
])
and
$itemCount
> 0)
019.
{
020.
$itemIds
=
""
;
021.
foreach
(
$_SESSION
[
'cart'
]
as
$itemId
)
022.
{
023.
$itemIds
=
$itemIds
.
$itemId
.
","
;
024.
}
025.
$inputItems
= rtrim(
$itemIds
,
","
);
026.
$meSql
=
"SELECT * FROM products WHERE id in ({$inputItems})"
;
027.
$meQuery
= mysql_query(
$meSql
);
028.
$meCount
= mysql_num_rows(
$meQuery
);
029.
}
else
030.
{
031.
$meCount
= 0;
032.
}
033.
?>
034.
<!DOCTYPE html>
035.
<html lang=
"en"
>
036.
<head>
037.
<meta charset=
"utf-8"
>
038.
<meta http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
039.
<meta name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
040.
<title>itoffside.com shopping cart</title>
041.
042.
<!-- Bootstrap -->
043.
<link href=
"bootstrap/css/bootstrap.min.css"
rel=
"stylesheet"
>
044.
<link href=
"bootstrap/css/nava.css"
rel=
"stylesheet"
>
045.
046.
<!-- HTML5 Shim
and
Respond.js IE8 support of HTML5 elements
and
media queries -->
047.
<!-- WARNING: Respond.js doesn't work
if
you view the page via file:
048.
<!--[
if
lt IE 9]>
051.
<![
endif
]-->
052.
053.
</head>
054.
<body>
055.
<div
class
=
"container"
>
056.
057.
<!-- Static navbar -->
058.
<div
class
=
"navbar navbar-default"
role=
"navigation"
>
059.
<div
class
=
"container-fluid"
>
060.
<div
class
=
"navbar-header"
>
061.
<button type=
"button"
class
=
"navbar-toggle"
data-toggle=
"collapse"
data-target=
".navbar-collapse"
>
062.
<span
class
=
"sr-only"
>Toggle navigation</span>
063.
<span
class
=
"icon-bar"
></span>
064.
<span
class
=
"icon-bar"
></span>
065.
<span
class
=
"icon-bar"
></span>
066.
</button>
067.
<a
class
=
"navbar-brand"
href=
"#"
>Shopping Cart - ItOffside.com</a>
068.
</div>
069.
<div
class
=
"navbar-collapse collapse"
>
070.
<ul
class
=
"nav navbar-nav"
>
071.
<li
class
=
"active"
><a href=
"index.php"
>หน้าแรกสินค้า</a></li>
072.
<li><a href=
"cart.php"
>ตะกร้าสินค้าของฉัน <span
class
=
"badge"
><?php
echo
$meQty
; ?></span></a></li>
073.
</ul>
074.
</div><!--/.nav-collapse -->
075.
</div><!--/.container-fluid -->
076.
</div>
077.
<h3>ตะกร้าสินค้าของฉัน</h3>
078.
<!-- Main component
for
a primary marketing message
or
call to action -->
079.
<?php
080.
if
(
$action
==
'removed'
)
081.
{
082.
echo
"<div class=\"alert alert-warning\">ลบสินค้าเรียบร้อยแล้ว</div>"
;
083.
}
084.
085.
if
(
$meCount
== 0)
086.
{
087.
echo
"<div class=\"alert alert-warning\">ไม่มีสินค้าอยู่ในตะกร้า</div>"
;
088.
}
else
089.
{
090.
?>
091.
<form action=
"updatecart.php"
method=
"post"
name=
"fromupdate"
>
092.
<table
class
=
"table table-striped table-bordered"
>
093.
<thead>
094.
<tr>
095.
<th>#</th>
096.
<th>รหัสสินค้า</th>
097.
<th>ชื่อสินค้า</th>
098.
<th>รายละเอียด</th>
099.
<th>จำนวน</th>
100.
<th>ราคาต่อหน่วย</th>
101.
<th>จำนวนเงิน</th>
102.
<th> </th>
103.
</tr>
104.
</thead>
105.
<tbody>
106.
<?php
107.
$total_price
= 0;
108.
$num
= 0;
109.
while
(
$meResult
= mysql_fetch_assoc(
$meQuery
))
110.
{
111.
$key
=
array_search
(
$meResult
[
'id'
],
$_SESSION
[
'cart'
]);
112.
$total_price
=
$total_price
+ (
$meResult
[
'product_price'
] *
$_SESSION
[
'qty'
][
$key
]);
113.
?>
114.
<tr>
115.
<td><img src=
"images/<?php echo $meResult['product_img_name']; ?>"
border=
"0"
></td>
116.
<td><?php
echo
$meResult
[
'product_code'
]; ?></td>
117.
<td><?php
echo
$meResult
[
'product_name'
]; ?></td>
118.
<td><?php
echo
$meResult
[
'product_desc'
]; ?></td>
119.
<td>
120.
<input type=
"text"
name=
"qty[<?php echo $num; ?>]"
value=
"<?php echo $_SESSION['qty'][$key]; ?>"
class
=
"form-control"
style=
"width: 60px;text-align: center;"
>
121.
<input type=
"hidden"
name=
"arr_key_<?php echo $num; ?>"
value=
"<?php echo $key; ?>"
>
122.
</td>
123.
<td><?php
echo
number_format(
$meResult
[
'product_price'
],2); ?></td>
124.
<td><?php
echo
number_format((
$meResult
[
'product_price'
] *
$_SESSION
[
'qty'
][
$key
]),2); ?></td>
125.
<td>
126.
<a
class
=
"btn btn-danger btn-lg"
href=
"removecart.php?itemId=<?php echo $meResult['id']; ?>"
role=
"button"
>
127.
<span
class
=
"glyphicon glyphicon-trash"
></span>
128.
ลบทิ้ง</a>
129.
</td>
130.
</tr>
131.
<?php
132.
$num
++;
133.
}
134.
?>
135.
<tr>
136.
<td colspan=
"8"
style=
"text-align: right;"
>
137.
<h4>จำนวนเงินรวมทั้งหมด <?php
echo
number_format(
$total_price
,2); ?> บาท</h4>
138.
</td>
139.
</tr>
140.
<tr>
141.
<td colspan=
"8"
style=
"text-align: right;"
>
142.
<button type=
"submit"
class
=
"btn btn-info btn-lg"
>คำนวณราคาสินค้าใหม่</button>
143.
<a href=
"order.php"
type=
"button"
class
=
"btn btn-primary btn-lg"
>สังซื้อสินค้า</a>
144.
</td>
145.
</tr>
146.
</tbody>
147.
</table>
148.
</form>
149.
<?php
150.
}
151.
?>
152.
153.
</div> <!-- /container -->
154.
155.
<!-- jQuery (necessary
for
Bootstrap's JavaScript plugins) -->
157.
<!-- Include all compiled plugins (below),
or
include
individual files
as
needed -->
158.
<script src=
"bootstrap/js/bootstrap.min.js"
></script>
159.
</body>
160.
</html>
161.
<?php
162.
mysql_close();