Example #1
0
<table class="ui celled table">
		<tr>
			<thead>
				<th>ID</th>
				<th>Nom</th>
				<th>Prenom</th>
				<th>Tel</th>
				<th>Code Postal</th>
				<th>Ville</th>
				<th>Site</th>
				<th>Action</th>
			</thead>
		</tr>
	<?php 
$users = new User();
foreach ($users->archived() as $u) {
    ?>
	
		<tr>
			<td><a href="<?php 
    echo url('users/show', $u->id);
    ?>
"><?php 
    echo $u->id;
    ?>
</a></td>
			<td><a href="<?php 
    echo url('users/show', $u->id);
    ?>
"><?php 
    echo $u->nom;