Initial commit
This commit is contained in:
8
app/Views/users/index.phtml
Normal file
8
app/Views/users/index.phtml
Normal file
@@ -0,0 +1,8 @@
|
||||
<!-- The $title and $users variables were passed from the controller -->
|
||||
<h1><?= htmlspecialchars($title) ?></h1>
|
||||
|
||||
<ul>
|
||||
<?php foreach ($users as $user): ?>
|
||||
<li><?= htmlspecialchars($user['name']) ?> (<?= htmlspecialchars($user['email']) ?>)</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
Reference in New Issue
Block a user