This repository has been archived on 2022-10-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
biblio/genres.php
2019-02-11 10:24:07 +01:00

34 lines
No EOL
679 B
PHP

<?php
require_once "includes/bdd.php";
// Récupération des genres
$genres = $bdd->prepare("SELECT * FROM biblio_genre");
$genres->execute();
$genres = $genres->fetchAll();
?>
<!DOCTYPE html>
<html>
<head>
<title>Biblio | Genres</title>
<?php require_once "includes/head.php"; ?>
</head>
<body>
<div id="container">
<ul id="nav">
<!-- Navigation -->
<a href=".">Retour à l'accueil</a>
</ul>
<hr>
<h2>Liste des genres</h2>
<p class="info"><?= count($genres); ?> genres enregistrés</p>
<ul class="info">
<?php
foreach($genres as $genre){
echo "<li><a href=\"genre.php?id=".$genre["id"]."\">".$genre["nom"]."</a></li>";
}
?>
</ul>
</div>
</body>
</html>