繁体   English   中英

PHP HTML表格查询

[英]php html table query

我已经有一段时间了,只是无法弄清楚。我有一个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>"); 

?>

我猜...桌子满了1秒?

当打印<td>您应该传递一个值,而不是一个表达式。 对表达式进行求值,在您的情况下,因为表达式成功(它们是赋值),所以返回1。

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

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

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

这个想法是不断增加价值。 确保考虑数据,尤其是十进制数据。

$currentCost; /* value from the query*/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM