Update file upload.php

This commit is contained in:
Jan BELLON 2024-03-07 18:15:30 +00:00
parent 1102908142
commit 2f80bcbfa0

View File

@ -22,7 +22,6 @@ if(isset($_POST['page-content'])) {
$upload->bindParam(':filename', $filename);
$upload->bindParam(':titre', htmlspecialchars($_POST['titre']));
$upload->bindParam(':auteur', $_SESSION['display_name']);
$upload->bindParam(':date', date("Y-m-d"));
if($upload->execute()) {
$status = "Article Publié";
} else {