9 lines
162 B
PHP
9 lines
162 B
PHP
<?php
|
|
require("../modele/livres.php");
|
|
|
|
$livres = getLivres();
|
|
|
|
include("../vue/header.php");
|
|
include("../vue/bibliotheque.php");
|
|
include("../vue/footer.php");
|
|
?>
|