gpt4 book ai didi

php - 无法显示/计算一组文本字段的总值 - angular js html php

转载 作者:行者123 更新时间:2023-11-28 03:12:55 24 4
gpt4 key购买 nike

我有一个简单的表单,其中包含“总计”字段和另一个总计字段(这是所有“总计”字段的总和)。

“总计”字段是根据 qty 和 unitcost 字段的值计算得出的,即 qty0 * unitcost0= total0,qty1 * unitcost1 = total1,等等。请注意,qty 和 amt 来自数据库

我希望像 total0+total1+ total2 一样实时计算总计......等等。

这是我的代码(抱歉,如果这段代码对某些人来说很乱,但我只是编程的初学者)我的 ng-app 在 body 标签中,我的 ng-controller 在 div 中

<?php
echo '
<form name="editpo" id="editpo" method="post" action="poeditprocess.php">
<table>
<tr>
<th colspan="1">Stock No.</th>
<th colspan="1"> Unit </th>
<th colspan="5">Description</th>
<th colspan="1">Quantity</td>
<th colspan="1">Unit Cost</th>
<th colspan="1">Amount</th>
</tr>
</table>
<table id="items">';


//print the item desc, unit, qty and unit cost
$ctr02 = 1;
$tamt = 0;

for ($i=0; $i < $ctritem; $i++)
{
$amt = $qty[$i] * $unitc[$i];
$tamt = $tamt + $amt;

$unitc[$i] = number_format($unitc[$i], 2, '.', ',');
$amt = number_format($amt, 2, '.', ',');
//initialize the qty and unitcost with the values fro db
echo '<tr ng-init="qty'.$i.'='.$qty[$i].'; cost'.$i.'='.$unitc[$i].';">';
echo "
<td id='amt'>".$ctr02."</td>
<td> <input type='text' name='unit[".$i."]' value='".$poitemunit[$i]."' required/></td>
<td colspan='3'><textarea rows='2' name='desc[".$i."]' required>".$poitemdesc[$i]."</textarea></td>";
echo '
<td><input type="number" name="qty'.$i.'" id="qty'.$i.'" min="0" max="10000" ng-model="qty'.$i.'" required /></td>
<td><input type="number" name="unitcost" ng-model ="cost'.$i.'" step="any" min="0" required /></td>

<td><input type="text" name="amt'.$i.'" id="amt'.$i.'" step="any" value="{{(qty'.$i.' * cost'.$i.') | currency : \'P \' : 2}}" disabled/></td>

</tr>';

$ctr02++;
}
echo "
</table>";

echo " <table>";
//this is the overall total
echo '<td><input type="text" name="tamt" id="tamt" value="{{(';
$x=0;
while($x<=$ctritem){
echo '(qty'.$x.' * cost'.$x.')';
if($x<$ctritem){
echo '+';
}
$x++;

}

echo ')| currency : \'Php \' : 2}}" disabled/></td>
</tr>';

echo "</table>
</form>";
?>

ctritem 是第一。列表中的项目。我用 for 循环打印所有要合计的项目。然后使用 while 循环得到总数的总和。

总的来说工作正常。但总计根本不起作用我不知道这有什么问题,因为我在另一页上使用相同的代码可以顺利运行。任何帮助,将不胜感激。提前致谢!

最佳答案

<td>
<input type="text" name="amt'.$i.'" id="amt'.$i.'" step="any"
value="{{(qty'.$i.' * cost'.$i.') | currency : \'P \' : 2}}"
disabled/>
</td>

声明一个变量

total$i = qty$i * cost$i 

在 for 循环中并将前一行更改为 然后在for循环外声明

$grandtotal = 0 

并在 for 循环内将 $total$i 添加到 $grandtotal 中:

$grandtotal += $total$i;

关于php - 无法显示/计算一组文本字段的总值 - angular js html php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29762359/

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