gpt4 book ai didi

php - 试图在 php 中显示 mysql 的总计

转载 作者:行者123 更新时间:2023-11-29 06:22:43 24 4
gpt4 key购买 nike

我正在尝试使用 are int 获取 qunt 并将它们全部加起来并显示总数

$qunt = 0;
$result = mysql_query("SELECT *
FROM properties_items
WHERE user_propid='$view'
ORDER BY id DESC") or die (mysql_error());

while ($row = mysql_fetch_array($result)) {
$itemid = $row['itemid'];
$qunt = $row['qunt'];

$qunt++;
}

echo $qunt;

最佳答案

$qunt = 0; 
$result = mysql_query("SELECT *
FROM properties_items
WHERE user_propid='$view'
ORDER BY id DESC") or die (mysql_error());

while ($row = mysql_fetch_array($result)) {
$itemid = $row['itemid'];
$qunt += $row['qunt'];
}

echo $qunt;

我敢说您可能没有使用 itemid,在这种情况下,在代码中循环结果集是没有意义的。相反,尝试这样的事情:

$qunt = mysql_query "SELECT SUM(qunt) FROM properties_items WHERE user_propid='$view'";

关于php - 试图在 php 中显示 mysql 的总计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2083819/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com