|
|
|
เว็บเช็คสินค้าหลังจากกดหยิบลงตะกร้าแล้วมันไม่แยกประเภทสินค้าให้ครับ |
|
|
|
|
|
|
|
ผมติดปัญหาตรงที่รูปที่ 4 ครับ คือ จากรูปที่ 2 สินค้าcpu และ รูปที่3 เมนบอร์ด พอกดใส่ลงตะกร้าทั้งในรูปที่ 2 และ รูปที่ 3 มันรวมให้ พอจะไปหน้าเช็คสินค้าที่เราเลือกไว้ คือรูปที่ 4 มันกลับขึ้นโชว์สินค้าของ CPU อย่างเดียว มันไม่โชว์สินค้าของ mainboard เลย แถมมันนับสินค้าของ mainboard ไป + ให้กลับสินค้า cpu ซะงั้น ผมอยากให้มันโชว์แยกประเภทสินค้า
[รูปตัวอย่างอาจจะมีชื่อสินค้าไม่ตรงนะครับ กำลังทดลองอยู่]
ขอบคุณครับที่มาช่วย
(รูปที่1)
(รูปที่2)
(รูปที่3)
(รูปที่4)
Code (PHP)
<? ob_start() ?>
<?php
session_start();
require 'connect.php';
$action = isset($_GET['a']) ? $_GET['a'] : "";
$itemCount = isset($_SESSION['cart']) ? count($_SESSION['cart']) : 0;
if (isset($_SESSION['qty']))
{
$meQty = 0;
foreach ($_SESSION['qty'] as $meItem)
{
$meQty = $meQty + $meItem;
}
} else
{
$meQty = 0;
}
if (isset($_SESSION['cart']) and $itemCount > 0)
{
$itemIds = "";
foreach ($_SESSION['cart'] as $itemId)
{
$itemIds = $itemIds . $itemId . ",";
}
$inputItems = rtrim($itemIds, ",");
$meSql = "SELECT * FROM productscpu WHERE id in ({$inputItems})";
$meQuery = mysql_query($meSql);
$meCount = mysql_num_rows($meQuery);
} else
{
$meCount = 0;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/nava.css" rel="stylesheet">
<style type="text/css">
body {
background-image: url(http://www.charathbank.com/wp-content/uploads/2013/12/white.jpg);
background-attachment: fixed;
}
</style>
</head>
<body>
<div class="container">
<!-- Static navbar -->
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="user_page.php">Shopping Cart - ItOffside.com</a> </div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="Products.php">หน้าแรกสินค้า</a></li>
<li><a href="cart.php">ตะกร้าสินค้าของฉัน <span class="badge"><?php echo $meQty; ?></span></a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container-fluid -->
</div>
<h3>ตะกร้าสินค้าของฉัน</h3>
<!-- Main component for a primary marketing message or call to action -->
<?php
if ($action == 'removed')
{
echo "<div class=\"alert alert-warning\">ลบสินค้าเรียบร้อยแล้ว</div>";
}
if ($meCount == 0)
{
echo "<div class=\"alert alert-warning\">ไม่มีสินค้าอยู่ในตะกร้า</div>";
} else
{
?>
<form action="updatecart.php" method="post" name="fromupdate">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>#</th>
<th>รหัสสินค้า</th>
<th>ชื่อสินค้า</th>
<th>รายละเอียด</th>
<th>จำนวน</th>
<th>ราคาต่อหน่วย</th>
<th>จำนวนเงิน</th>
<th> </th>
</tr>
</thead>
<tbody>
<?php
$total_price = 0;
$num = 0;
while ($meResult = mysql_fetch_assoc($meQuery))
{
$key = array_search($meResult['id'], $_SESSION['cart']);
$total_price = $total_price + ($meResult['product_price'] * $_SESSION['qty'][$key]);
?>
<tr>
<td><img src="images/<?php echo $meResult1['product_img_name']; ?>" border="0"></td>
<td><?php echo $meResult1['product_code']; ?></td>
<td><?php echo $meResult1['product_name']; ?></td>
<td><?php echo $meResult['product_desc']; ?></td>
<td><input type="text" name="qty[<?php echo $num; ?>]" value="<?php echo $_SESSION['qty'][$key]; ?>" class="form-control" style="width: 60px;text-align: center;">
<input type="hidden" name="arr_key_<?php echo $num; ?>" value="<?php echo $key; ?>"></td>
<td><?php echo number_format($meResult['product_price'],2); ?></td>
<td><?php echo number_format(($meResult['product_price'] * $_SESSION['qty'][$key]),2); ?></td>
<td><a class="btn btn-danger btn-lg" href="removecart.php?itemId=<?php echo $meResult['id']; ?>" role="button"> <span class="glyphicon glyphicon-trash"></span> ลบทิ้ง</a></td>
</tr>
<?php
$num++;
}
?>
<tr>
<td colspan="8" style="text-align: right;"><h4>จำนวนเงินรวมทั้งหมด <?php echo number_format($total_price,2); ?> บาท</h4></td>
</tr>
<tr>
<td colspan="8" style="text-align: right;"><button type="submit" class="btn btn-info btn-lg">คำนวณราคาสินค้าใหม่</button>
<a href="order.php" type="button" class="btn btn-primary btn-lg">สังซื้อสินค้า</a></td>
</tr>
</tbody>
</table>
</form>
<?php
}
?>
</div>
<!-- /container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="bootstrap/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>
<? ob_end_flush() ?>
Tag : PHP, MySQL, HTML/CSS, Windows
|
|
|
|
|
|
Date :
2015-04-15 13:06:38 |
By :
trewq |
View :
1172 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.
|
|
|
|
|
Date :
2015-04-15 19:06:11 |
By :
trewq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$meSql = "SELECT * FROM productscpu WHERE id in ({$inputItems})";
echo $meSql;
ผมว่าน่าจะผิดตรงนี้ครับ ลองเอา SQL ออกมาดูหน่อยครับ
|
|
|
|
|
Date :
2015-04-16 10:33:24 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2015-04-16 13:13:54 |
By :
trewq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.
|
|
|
|
|
Date :
2015-04-16 20:18:45 |
By :
trewq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.
|
|
|
|
|
Date :
2015-04-18 12:34:20 |
By :
trewq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|