gpt4 book ai didi

php - 如何使用PHP减去第三列中的两列输出

转载 作者:可可西里 更新时间:2023-11-01 07:46:06 24 4
gpt4 key购买 nike

使用 PHP,我想从 credit 列中减去 used 列的每个值。我在 phpmyadmin 中创建了一个表 A。

remaining:credit-used 我得不到结果我只是得到相同的信用值。

// The desire output in table A

id |date |credit |used|remaining|
1 |20-5-2013 |400 |300 |100 |
2 |19-5-2013 |300 |100 |200 |
3 |18-5-2013 |600 |50 |550 |
// db connection
query select all from tableA
$sql = "SELECT * FROM tableA";
$sql_result = mysql_query ($sql, $connection ) or die ('request "Could not execute SQL query" '.$sql);
?>

fetch the information and output into a table:

<table >
<tr>
bla bla..
</tr>

// echo:

<tr>
<td><?php echo $row["id"]; ?></td>
<td><?php echo $row["date"]; ?></td>
<td><?php echo $row["credit"]; ?></td>
<td><?php echo $row["used"]; ?></td>

我正在尝试执行此查询以获得剩余:

// <td> <?php> echo $total= $row["credit"] - $row["used"];?> 
</td>
</tr>
</table>

任何人都可以给我提示或突出显示错误。比你提前很多。

最佳答案

你有什么应该工作,但为什么不让 MySQL 进行计算呢?

mysql_query("SELECT *, `credit`-`used` AS `remaining` FROM `tableA`");

关于php - 如何使用PHP减去第三列中的两列输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16597000/

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