Files
D3-A01BibliMVC/controleur/afficherLivres.php
2025-09-11 11:25:49 +02:00

9 lines
162 B
PHP

<?php
require("../modele/livres.php");
$livres = getLivres();
include("../vue/header.php");
include("../vue/bibliotheque.php");
include("../vue/footer.php");
?>