将总行添加到表中

时间:2015-07-25 06:35:54

标签: php

我创建了一个表,可以获得缺少员工的日子,现在我试图添加一行作为计算每列总数的总计..但我不知道该怎么做。有什么帮助吗?

echo '  <div>

        <table>
            <tr> 
                <th>Month</th><th>Vacations</th>
            </tr>';

            for($i=1;$i<=12;$i++){
                echo '<tr>

                    <td>'.getCount($id,$year,$i,'Vacation').'</td>


                </tr>
                ';
            }

echo       '</table>
        </div>';

1 个答案:

答案 0 :(得分:1)

循环之前

 $WeeklyVacationCount = 0;
 //.........other td

 for($i=1;$i<=12;$i++){
    $WeeklyVacation = getCount($afnbr,$year,$i,'WeeklyVacation');
     $WeeklyVacationCount+=$WeeklyVacation;
    echo "<td>{$WeeklyVacation}</td>"; 
    //.........other td
循环后

echo "<tr>";
echo "<td>{$WeeklyVacationCount}</td>";
echo "</tr>";
//.........other td