我有一个这样的数据库:
ID | AMOUNT
1 15.00
2 100.00
3 100.00
我需要将所有金额加在一起。我已经尝试了一些 PHP 数学的东西,但就是不能让它工作。
<?php
$total = mysql_query("SELECT amount FROM payments")
or die(mysql_error());
$grandtotal=
while($total1 = mysql_fetch_array( $total )) {
$total1['amount']+
};
?>