0

我设置的购物车存在一些问题,它不会显示购物车中的每个商品,而是显示正确数量的商品,但每次都会重复添加到购物车的第一个商品。

我知道出了什么问题,但只是不确定如何修复它......基本上目前我只对记录集执行一个查询,这就是正在显示的内容。在我的 PHP 基础知识中,我会说我需要对购物车中的每个项目进行查询(最多只有 6 个,所以永远不会很大)。

购物车中的数字与数据库中的 ship_id 数字相同......因此我在想我可以放一些类似的东西:

   $sql = "SELECT $ship_id, $ship_name, image
    FROM $ship_infomation
    WHERE $ship_id =  $cartId;";

...在 foreach 循环内,但这会破坏事情

有人能指出指导我解决小问题的最佳方向吗?

非常感谢

购物车展示:

 <?php 
    $cart = $_SESSION['cart'];
  if (!$cart) {echo "<div class='dialogue_box_inside_info_request'>
 <div class='dialogue_box_image'>
    <img src='images/basket_empty_dialogue.png' width='618' height='264' />
    </div>
</div>";}
  else
  {

      $array = explode(',', $_SESSION['cart']);

  echo "<table width='835' border = '0'>";
  foreach($array as $cartId) {
  $ship_name = $row_ships['ship_name'];
  $ship_image = $row_ships['image'];
  echo "<tr>";
  echo "<td width='110' height='58' class='table_text'><img src='images/ships/$ship_image'width='83' height='53' /> </td>";
  echo "<td width='620' height='58' class='table_text'>$ship_name</td>";
  echo "<td width='35' height='58' class='table_text'><a href='cart.php?action=delete&ship_id=$cartId'><img src='images/trash.png' width='31' height='42' /></a></td>";
  echo "<td height='58'>$cartId</td>";
  echo "</tr>";
  } 
  echo "</table>";

  }
   ?> 

记录集放置在代码顶部

<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

mysql_select_db($database_ships, $ships);
$query_ships = "SELECT ship_id, ship_name, image FROM ship_infomation";
$ships = mysql_query($query_ships, $ships) or die(mysql_error());
$row_ships = mysql_fetch_assoc($ships);
$totalRows_ships = mysql_num_rows($ships);
?>
4

2 回答 2

0
$row_ships = mysql_fetch_assoc($ships);

此行必须放在循环内。

一个如何组织这一切的例子。这都是我自己的变量名,所以你必须做一些替换。在会话中,您将所有商品的数组放入购物车。您不必像现在这样将其存储为用逗号或类似字符分隔的字符串。做就是了$_SESSION['cart'] = array()

要添加产品,请使用推送功能。 $_SESSION['cart'].push($itemid);

要从购物车中删除产品,您必须遍历数组以找到正确的条目并取消设置。我现在不会为您编写该代码。只是为您指明正确的方向。

如果您将产品/项目的 id 存储在会话中,您可以创建如下查询:

<table>
<?php
$where = implode(', ', $_SESSION['cart']);
$rec = mysql_query("SELECT * FROM product WHERE id IN ($where)");
while($row = mysql_fetch_assoc($rec)) {
    // Output whatever you need.
    echo "<tr>";
    echo "<td><img src='images/ships/$row['image']</td>";
    echo "<td>$row['name']</td>";
    echo "</tr>"
}
?>
</table>

此外,您应该考虑改用 mysqli 库,因为 mysql 函数已被弃用。http://www.php.net/manual/en/book.mysqli.php

于 2013-08-03T19:54:08.957 回答
0

您只能看到第一项的原因是您仅使用 mysql_fetch_assoc() 函数获取第一行。正如其他答案中所述,您没有限制从数据库中获取的行数。

您的假设是正确的,并且应该有效,但请避免在循环中使用查询。

您可以向上移动explode(',', $_SESSION['cart']);查询所在的位置,并在 WHERE 子句中给出结果数组,因此您将只获得购物车中的产品。

$cartIdArray = explode(',', $_SESSION['cart']);
/* here You should check that all are integers, or apply mysql_real_escape_string() */
$query_ships = "SELECT ship_id, ship_name, image
  FROM ship_infomation
  WHERE ship_id IN(" .  implode(", ", $cartIdArray) . ")";

您可以删除该$row_ships = mysql_fetch_assoc($ships);行。在输出部分而不是 foreach 中,使用

while($row_ships = mysql_fetch_assoc($ships))
{
  $ship_name = $row_ships['ship_name'];
  $ship_image = $row_ships['image'];
  echo "<tr>";
  echo "<td width='110' height='58' class='table_text'><img src='images/ships/$ship_image'width='83' height='53' /> </td>";
  echo "<td width='620' height='58' class='table_text'>$ship_name</td>";
  echo "<td width='35' height='58' class='table_text'><a href='cart.php?action=delete&ship_id={$row_ships['ship_id']}'><img src='images/trash.png' width='31' height='42' /></a></td>";
  echo "</tr>";
}
于 2013-08-03T20:14:32.053 回答