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/supprimerLivre.php
2019-02-11 10:24:07 +01:00

25 lines
No EOL
544 B
PHP

<?php
require_once "includes/bdd.php";
// Suppression du livre
$livre = $bdd->prepare("DELETE FROM biblio_livre WHERE ISBN = :ISBN");
$livre->execute([
"ISBN" => $_GET["ISBN"]
]);
?>
<!DOCTYPE html>
<html>
<head>
<title>Biblio | Livre supprimé</title>
<?php require_once "includes/head.php"; ?>
</head>
<body>
<div id="container">
<p>Livre supprimé.</p>
<ul class="nav">
<li><a href="index.php">Retour à l'accueil</a></li>
<li><a href="livres.php">Retour à la gestion des livres</a></li>
</ul>
</div>
</body>
</html>