gpt4 book ai didi

php - 如何使用 PHP 作为可用变量获取 mysql 列的总和

转载 作者:行者123 更新时间:2023-11-30 23:51:38 25 4
gpt4 key购买 nike

我已经搜索了一个星期如何完成此操作,但没有一个教程有效 - 我通常会收到一条消息“资源 ID 18”。

我正在创建一个银行模拟游戏。

最终目标:我想要一个变量“$player_balance”作为该玩家拥有的所有帐户余额的总和,以便它可以显示在表格底部的帐户余额下。

这是我的代码,感谢您提供的任何帮助或指导。

function displayMyAccounts(){
global $database, $session;
$q = "SELECT game_account_number,game_account_owner,game_account_name,game_account_balance FROM ".TBL_ACCOUNTS." WHERE game_account_owner='".$session->username."'";
$result = $database->query($q);
/* Error occurred, return given name by default */
$num_rows = mysql_numrows($result);
if(!$result || ($num_rows < 0)){
echo "Error displaying info";
return;
}
if($num_rows == 0){
echo "Database table empty";
return;
}

/* Display table contents */
echo "<table align=\"left\" border=\"1\" cellspacing=\"0\" cellpadding=\"3\" width=\"100%\">\n";
echo "<tr><td><b>Account Number</b></td><td><b>Account Name</b></td><td><b>Balance</b></td></tr>\n";
for($i=0; $i<$num_rows; $i++){
$anumber = mysql_result($result,$i,"game_account_number");
$aowner = mysql_result($result,$i,"game_account_owner");
$aname = mysql_result($result,$i,"game_account_name");
$abalance = mysql_result($result,$i,"game_account_balance");
setlocale(LC_MONETARY, 'en_US');
$abalance2 = money_format('%(#10n', $abalance);

echo "<tr><td>$anumber</td><td>$aname</td><td>$abalance2</td></tr>\n";
}
echo "<tr><td></td><td></td><td>$player_balance</td></tr>\n";
echo "</table><br>\n";
}
displayMyAccounts();

以上代码显示在每个玩家的“帐户页面”上。我希望他们的帐户总和出现在最后一行。感谢您的帮助,我会继续搜索和尝试。

下面是基于上面的输出:

    Account Number  Account Name    Balance
1000083690 Maverick $ 50,000.00
1000083696 WellsFargo $ 50,000.00
1000083697 Wachovia $ 50,000.00

最佳答案

不要使用 mysql_result()。它速度慢且效率低下,您最好使用 mysql_fetch_assoc() 来完成您正在做的事情:

$player_balance = 0;
// Also, ditch the for loop. This is the typical convention for retrieving results.
while ($row = mysql_fetch_assoc($result)) {

$abalance1 = money_format('%(#10n', $row['game_account_balance']);
echo "<tr><td>{$row['game_account_number']}</td><td>{$row['game_account_name']}</td><td>$abalance1</td></tr>\n";

// Now add to the balance
$player_balance = $player_balance + $row['game_account_balance'];
}
// And output your balance
$abalance_sum = money_format('%(#10n', $player_balance);
echo "<tr><td></td><td></td><td>$abalance_sum</td></tr>\n";

关于php - 如何使用 PHP 作为可用变量获取 mysql 列的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6641481/

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