mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
18 lines
229 B
Text
18 lines
229 B
Text
<html>
|
|
<body>
|
|
<table border="1">
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>First Name</th>
|
|
<th>Last Name</th>
|
|
</tr>
|
|
$for(i in PERSON)
|
|
<tr>
|
|
<td>$i._index.</td>
|
|
<td>$i.NAME</td>
|
|
<td>$i.LASTNAME</td>
|
|
</tr>
|
|
$/
|
|
</table>
|
|
</body>
|
|
</html>
|