Kaynağa Gözat

Spiele-Auswahl dropdown auf alphabetisch geändert

erdo 18 saat önce
ebeveyn
işleme
f6b6eb5e8b
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  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");