mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
19 lines
245 B
Text
19 lines
245 B
Text
<!DOCTYPE html>
|
|
<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>
|