while($ row = mysql_fetch_assoc($ result)) - 如何预测$ row?

时间:2011-08-05 21:20:09

标签: php mysql foreach row

我正在开发一个简单的订单系统。

我坚持使用的代码如下:

if (isset($_GET['cart']))
{
$cart = array();
$total = 0;
foreach ($_SESSION['cart'] as $id)
{
    foreach ($items as $product)
    {
        if ($product['id'] == $id)
        {
            $cart[] = $product;
            $total += $product['price'];
            break;
        }
    }
}

include 'cart.html.php';
exit();
}

这是代码构建在预设数组上。我正在使用mysql中有几列的表。

我决定了以下内容:

if (isset($_GET['cart']))
{
$cart = array();
$total = 0;
foreach ($_SESSION['cart'] as $id)
{
            while($row = mysql_fetch_assoc($productsSql)) {
    foreach ($row as $product)
    {
        if ($product['id'] == $id)
        {
            $cart[] = $product;
            $total += $product['price'];
            break;
        }
    }
}
    include 'cart.html.php';
exit();
}}

为了显示这个“购物车”,我决定:

foreach ($cart as $item) {
        $pageContent .= '
                <tr>
                    <td>'.$item['desc'].'</td>
                    <td>
                        R'.number_format($item['price'], 2).'
                    </td>
                </tr>
';

    }

所有这些似乎都是以一种方式生成我的购物车,在查看时它只显示项目的ID列表,例如在描述和价格应该是什么的情况下,我只在两个字段中得到商品ID ...我的总价格也是0.

有人能找到我在哪里错了吗?

或至少尝试给我一些输入,以便我朝着正确的方向前进!

谢谢!

$productsQuery = 'SELECT `id`, `refCode`, `desc`, `pack`, `measure`, `quantity`, `deptCode`, `taxable`, `price1`, `price2`, `crdCode`, `cost1`, `cost2` FROM `products` ORDER BY `desc` ';
$productsSql = mysql_query($productsQuery) or die(mysql_error());
if (mysql_num_rows($productsSql) == 0) {
die('No results.');
} else {
$orderContent = '';
while($row = mysql_fetch_assoc($productsSql)) {
$prId = $row['id'];
$prRefCode = $row['refCode'];
$prDesc = $row['desc'];
$prPack = $row['pack'];
$prMeasure = $row['measure'];
$prQuantity = $row['quantity'];
$prDeptCode = $row['deptCode'];
$prTaxable = $row['taxable'];
$prPrice1 = $row['price1'];
$prPrice2 = $row['price2'];
$prCrdCode = $row['crdCode'];
$prCost1 = $row['cost1'];
$prCost2 = $row['cost2'];
$orderContent .= '
    <tr>
        <td>'.$prId.'</td>
        <td>'.$prDesc.'</td>
        <td>'.$prPack.'x'.$prSize.' '.$prMeasure.'</td>
        <td>R'.$prPrice1.'</td>
        <td>
            <form action="" method="post">
                <div>
                    <input type="text" size="3" name="quantity" /> 
                </div>
            </form>
        </td>
        <td>
            <form action="" method="post">
                <div>
                    <input type="hidden" name="id" value="'.$prId.'" />
                    <input type="submit" name="action" value="Order" />
                </div>
            </form>
        </td>           
   </tr>
';
}}

2 个答案:

答案 0 :(得分:14)

假设数据库中的每一行都是这样的......

[product_id][product_name][product_description][product_price]

当您使用while循环将查询返回分配给通过mysql_fetch_assoc()传递的变量时,每个传递将隔离整行。您可以通过数组键引用($array['product_id'])或使用foreach循环手动分开。我认为你遇到的问题是你混淆了这个问题。记住上面的示例表格布局,您可以执行以下操作:

while ($tableRow = mysql_fetch_assoc($query)) { // Loops 3 times if there are 3 returned rows... etc

    foreach ($tableRow as $key => $value) { // Loops 4 times because there are 4 columns
        echo $value;
        echo $tableRow[$key]; // Same output as previous line
    }
    echo $tableRow['product_id']; // Echos 3 times each row's product_id value
}

在代码中查看此行:if ($product['id'] == $id) { }

我认为你的意思可能是if ($row['id'] == $id) { }

答案 1 :(得分:4)

你的中间代码块毫无意义。循环遍历会话变量,每次都运行一个查询......但它是SAME查询,并使用未定义的变量来引导。循环遍历结果行没有多大意义,因为您将遍历查询为每行返回的各个字段。

e.g。如果您的产品表仅包含(id, name, description)字段,则$row将是一个类似于以下内容的数组:

$row = array('id' => xxx, 'name' => yyy, 'description' => zzz);

当您foreach() $row()时,您没有获得单独的产品,您将获得这些字段。 $ product将是xxx,然后是yyy,然后是zzz

我不知道你的代码想要完成什么 - 我猜你正在尝试检索用户添加到购物车中的产品的价格,但是你会在一个非常奇怪的问题中找到它。非常低效的方式。