|
<table border=1>
<tr> <th>Name</th> <th>Salary</th> <th>Bonus</th> <th>Total</th> </tr> {staff callback='before.php', before}
{first} <tr> <td>Totals</td> <td>{$salaryTotal | %.2f}</td> <td>{$bonusTotal | %.2f}</td> <td>{$totalTotal | %.2f}</td> </tr> {/first}
<tr align="right" bgcolor="{switch 'yellow', 'pink'}"> <td align="left">{$name | capitalize}</td> <td>{$salary | %.2f}</td> <td>{$bonus | %.2f}</td> <td>{$total | %.2f}</td> </tr>
{/staff} </table>
|
| Name |
Salary |
Bonus |
Total |
| Totals |
15000.00 |
1500.00 |
16500.00 |
| Joe |
1000.00 |
500.00 |
1500.00 |
| Jim |
2000.00 |
400.00 |
2400.00 |
| John |
3000.00 |
300.00 |
3300.00 |
| Jack |
4000.00 |
200.00 |
4200.00 |
| Jerry |
5000.00 |
100.00 |
5100.00 |
|