Files
html/generated/file_07.php
2026-04-12 22:57:03 +02:00

14 lines
370 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>