0

我已经有一段时间了,只是想不通。我有一个 html 表,必须找到 $total/Sale Cost (last) 行中的值的总和。任何人都可以帮助我或指出我正确的方向。

下面的代码:

<?php

print ("<table border=1><tr><th>Sale Number</th><th>Item</th><th>Item Cost</th><th>Units Sold</th><th>Sale Cost</th></tr>");

    for($x=0; $x<=20; $x=$x+1) {

        /*
        $sofa_total = 0;
        $table_total = 0;
        $chair_total = 0;
        $box_total = 0;
        $tablecloth_total = 0;
        */

        $amount = rand(1,10);
        $res = rand(1, 5);
        $object = 0;
        $total = $amount * $cost;




                if ($res == 1) {
                            $cost = 235.00;
                            $item = "sofa";
                            }
                        elseif ($res == 2) {
                            $cost = 125.00;
                            $item = "table";
                                }
                        elseif ($res == 3) {
                            $cost = 25.99;
                            $item = "chair";
                                }
                        elseif ($res == 4) {
                            $cost = 15.25;
                            $item = "box";
                                }
                        elseif ($res == 5) {
                            $cost = 23.50;
                            $item = "tablecloth";
                                }

        print ("<tr>");
             print ("<td>" . $table[$x][0] = $x+1 . "</td>");
             print ("<td>" . $table[$x][1] = $item . "</td>");
             print ("<td>" . $table[$x][2] = $cost . "</td>");
             print ("<td>" . $table[$x][3] = $amount . "</td>");
             print ("<td>" . $table[$x][4] = $total  . "</td>");
             }
        print ("</tr>");

                if ($object==0) {

                    $sofa_total = $sofa_total + $amount;

                    } elseif ($object==1) {

                    $table_total = $table_total + $amount;

                    } elseif ($object==2) {

                    $chair_total = $chair_total + $amount;

                    } elseif ($object==3) {

                    $box_total = $box_total + $amount;

                    } elseif ($object==4) {

                    $tablecloth_total = $tablecloth_total + $amount;

                    }


print ("</table>"); 

?>
4

2 回答 2

1

让我猜猜……桌子上全是1s?

当您打印<td>s 时,您应该传入一个值,而不是 espression。对表达式进行评估,在您的情况下,返回 1 因为它们是成功的(它们是分配)。

除了采用这种方法,您可以保留计数器并在每个周期将它们相加,在另一个语句中打印当前值,最后在最后一个周期回显(打印)计数器。

于 2012-11-15T11:59:52.160 回答
0

通过将当前实例的值添加到前一个实例的值来循环……

for( your loop){
    $sampleCost = $sampleCost + $currentCost;
}
echo $sampleCost; /*another way of displaying item*/

这个想法是不断增加价值。确保您考虑数据,尤其是带小数的数据。

$currentCost; /* value from the query*/
于 2012-11-15T11:57:35.597 回答