14 lines
370 B
PHP
14 lines
370 B
PHP
<?php
|
||
// 7. Views/clients.php – vue liste clients
|
||
?><!doctype html>
|
||
<html lang="fr">
|
||
<head><meta charset="utf-8"><title>Clients</title></head>
|
||
<body>
|
||
<table>
|
||
<tr><th>Nom</th><th>Email</th></tr>
|
||
<?php foreach ($clients as $c): ?>
|
||
<tr><td><?= htmlspecialchars($c->nom) ?></td><td><?= htmlspecialchars($c->email) ?></td></tr>
|
||
<?php endforeach; ?>
|
||
</table>
|
||
</body>
|
||
</html>
|