diff --git a/php/creer_event.php b/php/creer_event.php
new file mode 100644
index 0000000..a8f3e19
--- /dev/null
+++ b/php/creer_event.php
@@ -0,0 +1,100 @@
+
+
+
+
Liste des Évenements :
@@ -101,7 +109,7 @@ $event = mysqli_stmt_get_result($stmt);
".$row['Nom']." | ".$row['Sport']." | ".$row['Lieux']." | ".$row['Date']." | ".$row['NbInscrit']." | ";
+ echo " ".$row['Nom']." | ".$row['Sport']." | ".$row['Lieux']." | ".$row['Date']." | ".$row['NbInscrit']." |
";
}
?>
diff --git a/php/event.php b/php/event.php
new file mode 100644
index 0000000..acb4466
--- /dev/null
+++ b/php/event.php
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
Évènements - Jeux Olympiques
+
+
+
+
+
+
+
+
+'
+ . '
'. $event['title'] .'
'
+ . '
' . $event['description'] . '
';
+
+echo '
Commentaires
';
+if (empty($commentaire)) {
+ echo '
Aucun
';
+} else {
+ foreach ($commentaire as $com) {
+ echo '
';
+ echo "".$com['title'].""
+ . (isset($_SESSION['user']['id']) && $com['id_user'] == $_SESSION['user']['id'] ?
+ ' Modifier ce commentaire' :
+ '')
+ . '' . $comment['content'] ."
"
+ . "".$comment['login']."
";
+ echo "";
+ }
+}
+echo "
";
+
+if (empty($_SESSION['user'])) {
+ echo '
Il faut être identifié pour poster un commentaire.
';
+} else {
+ if ($article['closed']) {
+ echo "
Article fermé, non modifiable.
";
+ } else {
+ echo '
Ajouter un commentaire avec votre compte : ' . $_SESSION['user']['name']
+ .'
';
+ }
+}
+?>
+
+
Retour à la liste des articles
+
+
+
+
+