Heim  >  Artikel  >  Backend-Entwicklung  >  求解 数据库 一列商品的价位相加得到总价

求解 数据库 一列商品的价位相加得到总价

WBOY
WBOYOriginal
2016-06-13 12:08:561628Durchsuche

求解 数据库 一列商品的价格相加得到总价
这学期要做一个购物的网站,大部分都完成了,基本只剩下计算总价了

我的数据库是一个购物车的列表通过外键连到我的商品列表,那里有商品的单价,如下图,cart是我的购物车,product是商品列表:


然后我已经能在我的页面上导出我的数据了

但是我想要在下面计算出我的总价,印象中好像不是很难,但是完全记不起来了,求救,谢谢了,下面是我提取数据的代码,最后这3个问号就是我想得到的总价:

function checkItems()
{
$result = mysql_query("SELECT * FROM cart");
$num_rows = mysql_num_rows($result);
if(!$num_rows)
{
echo '

No product have been selected';
}
else
{
$sql = "SELECT cart.cartID, cart.productID,product.productName,product.productPrice FROM cart INNER JOIN product ON cart.productID=product.productID ORDER BY cart.cartID";
$result = mysql_query($sql);
echo ("
echo (" Cart ID Product Name Price Remove Item ");
while($row = mysql_fetch_array($result)){
{
$id = $row['cartID'];
$proid = $row['productID'];
$proname = $row['productName'];
$price = $row['productPrice'];


echo (" $id $proname $price Remove ");
}
}
}
echo ("");
echo "
The total cost is $". $???;
}



------解决思路----------------------
$total = 0;
while($row = mysql_fetch_array($result)){
{
$id = $row['cartID'];
$proid = $row['productID'];
$proname = $row['productName'];
$price = $row['productPrice'];
$total += $price;
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn