浏览代码

Spiele-Auswahl dropdown auf alphabetisch geändert

erdo 18 小时之前
父节点
当前提交
f6b6eb5e8b
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      index.php

+ 2 - 1
index.php

@@ -26,7 +26,8 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['add_score'])) {
 }
 
 // --- DATEN ABFRAGEN ---
-$stmtGames = $pdo->query("SELECT * FROM spiele ORDER BY id DESC");
+// ÄNDERUNG HIER: Sortierung von id DESC auf titel ASC gesetzt
+$stmtGames = $pdo->query("SELECT * FROM spiele ORDER BY titel ASC");
 $exitGames = $stmtGames->fetchAll(PDO::FETCH_ASSOC);
 
 $stmtAllPlayers = $pdo->query("SELECT * FROM spieler ORDER BY name ASC");