First commit

This commit is contained in:
2025-09-11 11:25:49 +02:00
commit 2a1804109b
19 changed files with 256 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
require("../modele/livres.php");
$livres = getLivres();
include("../vue/header.php");
include("../vue/bibliotheque.php");
include("../vue/footer.php");
?>

View File

@@ -0,0 +1,9 @@
<?php
require("../modele/categories.php");
addCategorie();
include("../vue/header.php");
include("../vue/gestion_categories.php");
include("../vue/footer.php");
?>

View File

@@ -0,0 +1,11 @@
<?php
require("../modele/livres.php");
require("../modele/categories.php");
addLivre();
$categories = getCategories();
include("../vue/header.php");
include("../vue/gestion_livres.php");
include("../vue/footer.php");
?>

View File

View File

@@ -0,0 +1,14 @@
<?php
class Livre {
function getAll() {
}
function ajouter($titre, $auteur, $annee) {
}
}
?>

View File

@@ -0,0 +1,3 @@
<?php
?>

View File

@@ -0,0 +1,7 @@
<?php
include('./vue/header.php');
include('./vue/navigation.php');
include('./vue/footer.php');
?>