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.
$_SESSION
[
'formid'
] = sha1(
'itoffside.com'
. microtime());
008.
if
(isset(
$_SESSION
[
'qty'
])) {
009.
$meQty
= 0;
010.
foreach
(
$_SESSION
[
'qty'
]
as
$meItem
) {
011.
$meQty
=
$meQty
+
$meItem
;
012.
}
013.
}
else
{
014.
$meQty
= 0;
015.
}
016.
if
(isset(
$_SESSION
[
'cart'
])
and
$itemCount
> 0) {
017.
$itemIds
=
""
;
018.
foreach
(
$_SESSION
[
'cart'
]
as
$itemId
) {
019.
$itemIds
=
$itemIds
.
$itemId
.
","
;
020.
}
021.
$inputItems
= rtrim(
$itemIds
,
","
);
022.
$meSql
=
"SELECT * FROM products WHERE id in ({$inputItems})"
;
023.
$meQuery
= mysql_query(
$meSql
);
024.
$meCount
= mysql_num_rows(
$meQuery
);
025.
}
else
{
026.
$meCount
= 0;
027.
}
028.
?>
029.
<!DOCTYPE html>
030.
<html lang=
"en"
>
031.
<head>
032.
</head>
033.
<body>
034.
<div
class
=
"navbartop"
>
035.
<nav
class
=
"navbar navbar-inverse"
>
036.
<div
class
=
"container-fluid"
>
037.
<div
class
=
"navbar-header"
>
038.
<button type=
"button"
class
=
"navbar-toggle"
data-toggle=
"collapse"
data-target=
"#myNavbar"
>
039.
<span
class
=
"icon-bar"
></span>
040.
<span
class
=
"icon-bar"
></span>
041.
<span
class
=
"icon-bar"
></span>
042.
</button>
043.
<a
class
=
"navbar-brand"
href=
"#"
>Ampere Sticker</a>
044.
</div>
045.
<div
class
=
"collapse navbar-collapse"
id=
"myNavbar"
>
046.
<ul
class
=
"nav navbar-nav"
>
047.
<!--<li
class
=
"active"
><a href=
"simple.php"
>หน้าหลัก</a></li>-->
048.
<li
class
=
"dropdown"
>
049.
<a
class
=
"dropdown-toggle"
data-toggle=
"dropdown"
href=
"index.php"
>หน้าหลัก<span
class
=
"caret"
></span></a>
050.
<ul
class
=
"dropdown-menu"
>
051.
<li><a href=
"index.php#Size S"
>Size S</a></li>
052.
<li><a href=
"index.php#Size M"
>Size M</a></li>
053.
<li><a href=
"index.php#Size L"
>Size L</a></li>
054.
</ul>
055.
</li>
056.
<li><a href=
"#"
>สั่งทำสติ๊กเกอร์</a></li>
057.
</ul>
058.
<ul
class
=
"nav navbar-nav navbar-right"
>
059.
<li><a href=
"cart.php"
>รายการสั่งซื้อของฉัน <span
class
=
"badge"
><?php
echo
$meQty
; ?></span></a></li>
060.
<!--<li><a href=
"order.php"
>รายการสั่งซื้อของฉัน <span
class
=
"badge"
>5</span></a></li>-->
061.
<!--<li><a href=
"#"
><span
class
=
"glyphicon glyphicon-user"
></span> Sign Up</a></li>-->
062.
<li><a href=
"#"
><span
class
=
"glyphicon glyphicon-log-in"
></span> Login</a></li>
063.
</ul>
064.
</div>
065.
</div>
066.
</nav>
067.
</div>
068.
069.
070.
071.
<!-- Main component
for
a primary marketing message
or
call to action -->
072.
<?php
073.
if
(
$action
==
'removed'
)
074.
{
075.
echo
"<div class=\"alert alert-warning\">ลบสินค้าเรียบร้อยแล้ว</div>"
;
076.
}
077.
078.
if
(
$meCount
== 0)
079.
{
080.
echo
"<div class=\"alert alert-warning\">ไม่มีสินค้าอยู่ในตะกร้า</div>"
;
081.
}
else
082.
{
083.
?>
084.
085.
<div
class
=
"container"
>
086.
<div
class
=
"row"
>
087.
<div
class
=
"col-sm-12"
>
088.
089.
<h3 align=
"center"
>ยืนยันรายการสั่งซื้อ</h3>
090.
091.
<form action=
"updateorder.php"
method=
"post"
name=
"formupdate"
role=
"form"
id=
"formupdate"
onsubmit=
"JavaScript:return updateSubmit();"
>
092.
<div
class
=
"form-group"
>
093.
<label
for
=
"exampleInputEmail1"
>ชื่อ-นามสกุล</label>
094.
<input type=
"text"
class
=
"form-control"
id=
"order_fullname"
placeholder=
"ใส่ชื่อนามสกุล"
style=
"width: 300px;"
name=
"order_fullname"
>
095.
</div>
096.
<div
class
=
"form-group"
>
097.
<label
for
=
"exampleInputAddress"
>ที่อยู่</label>
098.
<textarea
class
=
"form-control"
rows=
"3"
style=
"width: 500px;"
name=
"order_address"
id=
"order_address"
></textarea>
099.
</div>
100.
<div
class
=
"form-group"
>
101.
<p>
102.
<label
for
=
"exampleInputPhone"
>เบอร์โทรศัพท์</label>
103.
<input type=
"text"
class
=
"form-control"
id=
"order_phone"
placeholder=
"ใส่เบอร์โทรศัพท์ที่สามารถติดต่อได้"
style=
"width: 300px;"
name=
"order_phone"
>
104.
</p>
105.
</div>
106.
<div align=
"center"
>
107.
<p><img src=
"images/payment.jpg"
width=
"400"
height=
"400"
></p><br>
108.
<p>
109.
<label
for
=
"exampleInputPayment"
>รูปภาพใบเสร็จชำระเงิน</label>
110.
<input type=
"file"
class
=
"form-control"
id=
"order_payment"
placeholder=
"ใส่รูปภาพใบเสร็จชำระเงิน"
style=
"width: 300px;"
name=
"order_payment"
>
111.
</p>
112.
</div><br>
113.
114.
<table
class
=
"table table-striped table-bordered"
>
115.
<thead>
116.
<tr>
117.
<th>รหัสสินค้า</th>
118.
<th>ชื่อสินค้า</th>
119.
<th>ขนาด Size</th>
120.
<th>จำนวน</th>
121.
<th>ราคาต่อหน่วย</th>
122.
<th>จำนวนเงิน</th>
123.
</tr>
124.
</thead>
125.
<tbody>
126.
<?php
127.
$total_price
= 0;
128.
$num
= 0;
129.
while
(
$meResult
= mysql_fetch_assoc(
$meQuery
))
130.
{
131.
$key
=
array_search
(
$meResult
[
'id'
],
$_SESSION
[
'cart'
]);
132.
$total_price
=
$total_price
+ (
$meResult
[
'product_price'
] *
$_SESSION
[
'qty'
][
$key
]);
133.
?>
134.
<tr>
135.
<td><?php
echo
$meResult
[
'product_code'
]; ?></td>
136.
<td><?php
echo
$meResult
[
'product_name'
]; ?></td>
137.
<td><?php
echo
$meResult
[
'product_desc'
]; ?></td>
138.
<td>
139.
<?php
echo
$_SESSION
[
'qty'
][
$key
]; ?>
140.
<input type=
"hidden"
name=
"qty[]"
value=
"<?php echo $_SESSION['qty'][$key]; ?>"
/>
141.
<input type=
"hidden"
name=
"product_id[]"
value=
"<?php echo $meResult['id']; ?>"
/>
142.
<input type=
"hidden"
name=
"product_price[]"
value=
"<?php echo $meResult['product_price']; ?>"
/>
143.
</td>
144.
<td><?php
echo
number_format(
$meResult
[
'product_price'
], 2); ?></td>
145.
<td><?php
echo
number_format((
$meResult
[
'product_price'
] *
$_SESSION
[
'qty'
][
$key
]), 2); ?></td>
146.
</tr>
147.
<?php
148.
$num
++;
149.
}
150.
?>
151.
<tr>
152.
<td colspan=
"8"
style=
"text-align: right;"
>
153.
<h4>จำนวนเงินรวมทั้งหมด <?php
echo
number_format(
$total_price
, 2); ?> บาท</h4>
154.
</td>
155.
</tr>
156.
<tr>
157.
<td colspan=
"8"
style=
"text-align: right;"
>
158.
<input type=
"hidden"
name=
"formid"
value=
"<?php echo $_SESSION['formid']; ?>"
/>
159.
<a href=
"cart.php"
type=
"button"
class
=
"btn btn-danger btn-lg"
>ย้อนกลับ</a>
160.
<button type=
"submit"
class
=
"btn btn-primary btn-lg"
>ยืนยันการสั่งซื้อ</button>
161.
</td>
162.
</tr>
163.
</tbody>
164.
</table>
165.
</form>
166.
<?php
167.
}
168.
?>
169.
</div>
170.
</div>
171.
</div>
172.
173.
</body>
174.
</html>
175.
<?php
176.
mysql_close();
177.
?>