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

20 lines
No EOL
377 B
PHP

<?php
require_once "includes/bdd.php";
// Requête SQL édition genre
$editerGenre = $bdd->prepare("
UPDATE biblio_genre
SET
nom = :nom
WHERE id = :id
");
$editerGenre->execute([
"id" => $_POST["id"],
"nom" => $_POST["nom"]
]);
?>
<script type="text/javascript">
// Redirection vers page genre
window.location.href = 'genre.php?id=<?= $_POST['id'] ?>';
</script>