Files
D3-A01BibliMVC/controleur/afficherLivres.php
2025-09-14 22:19:37 +02:00

9 lines
201 B
PHP

<?php
require("../controleur/LivreControleur.php");
$livres = new LivreControleur()->listerLivres();
include("../vue/header.php");
include("../vue/bibliotheque.php");
include("../vue/footer.php");
?>