-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
50 lines (44 loc) · 2.02 KB
/
admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
require"header/header.php";
require'bdd/config.php';
$reqgenre = $bdd->query('SELECT * FROM genre');
$reqgenre->setFetchMode(PDO::FETCH_ASSOC);
$resgenres = $reqgenre->fetchALL();
$reqedit = $bdd->query('SELECT * FROM editeur');
$reqedit->setFetchMode(PDO::FETCH_ASSOC);
$resedit = $reqedit->fetchALL();
$reqlangs = $bdd->query('SELECT * FROM langue');
$reqlangs->setFetchMode(PDO::FETCH_ASSOC);
$reslangs = $reqlangs->fetchALL();
$reqperso = $bdd->query('SELECT * FROM personne');
$reqperso->setFetchMode(PDO::FETCH_ASSOC);
$resperso = $reqperso->fetchALL();
$requser = $bdd->query('SELECT * FROM utilisateur');
$requser->setFetchMode(PDO::FETCH_ASSOC);
$resuser = $requser->fetchALL();
if (empty($_SESSION['connecter']) || $_SESSION['admin'] == 0) {
header("location:../index.php");
}
?>
<link rel="stylesheet" type="text/css" href="<?php echo $CONFIG['root_path']; ?>/css/admin.css">
<main class="principal">
<div class="admin">
<div class="gauche">
<h2><?php echo $_SESSION['nom'] . " " . $_SESSION['prenom']; ?></h2>
<div class="edition">
<h3>Paramètres livres</h3>
<ul>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/nouveaulivre.php">Ajouter un livre</a></li>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/nouveaugenre.php">Ajouter un genre</a></li>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/nouvelediteur.php">Ajouter un editeur</a></li>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/nouvellangue.php">Ajouter une langue</a></li>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/nouvelauteur.php">Ajouter un auteur</a></li>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/listereserv.php">Liste des réservations</a></li>
</ul>
<h3>Paramètres utilisateurs</h3>
<ul>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/nouveaucompte.php">Ajouter un compte</a></li>
<li><a href="<?php echo $CONFIG['root_path']; ?>/admin/listecompte.php">Liste des comptes</a></li>
</ul>
</div>
</div>