2010-01-24 15:27:33 -08:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
|
|
|
<table>
|
2010-01-28 09:27:27 -08:00
|
|
|
<? foreach ($user_profile_data as $label => $value): ?>
|
2010-01-24 15:27:33 -08:00
|
|
|
<tr>
|
2010-02-18 23:00:58 -07:00
|
|
|
<th><?= html::clean($label) ?></th>
|
2010-01-28 07:44:58 -08:00
|
|
|
<td><?= html::purify($value) ?></td>
|
2010-01-24 15:27:33 -08:00
|
|
|
</tr>
|
|
|
|
|
<? endforeach ?>
|
|
|
|
|
</table>
|