好的,所以我找到了mysqli格式:

$resultDN7 = $db->query("SELECT SUM(`donation_resources`) as `totalDN7` FROM ztn_com_donations WHERE donation_playerid='$player_id' AND donation_corpsid='$player_corpsid' ");
$rowDN7 = $resultDN7->fetch_assoc();
echo $rowDN7['totalDN7'];

$pladon = ( $rowDN7['totalDN7'] );


好吧,如果您注意到最后一行,我必须将结果更改为变量。我找不到关于此的文档,仅是以下示例:

if ($rowDN7)
{ $pladon = $row[0]; }


它是否正确?

最佳答案

mysql_result()期望参数2为int,并且您将其赋予string

该文件说


  正在检索的结果中的行号。行号从0开始。


因为在您的情况下DISTINCT SUM(donation_resources)它只会返回1行

应该像

echo mysql_result($resultDN7, 0);


其中$resultDN7是资源,而0是行

07-27 13:39