diff --git a/html/upload.php b/html/upload.php
index a45f0f0f..0753658d 100644
--- a/html/upload.php
+++ b/html/upload.php
@@ -11,7 +11,7 @@ if(isset($_POST['title'])) {
$filename = date("YmdHis");
$destination = "../content/journal/" . $filename;
$bdd = connect($dbhost, $dbname, $dbuser, $dbpass);
- $upload = $bdd->prepare("INSERT INTO (articles ID, titre, date, auteur) VALUES (:filename, :titre, :date, :auteur)");
+ $upload = $bdd->prepare("INSERT INTO articles (ID, titre, date, auteur) VALUES (:filename, :titre, :date, :auteur)");
$upload->bindParam(':filename', $filename);
$upload->bindParam(':titre', htmlspecialchars($_POST['titre']));
$upload->bindParam(':auteur', $_SESSION['display_name']);