From 8492623d884aa6115ddeeec813f60267fdae6dfc Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Mon, 20 May 2024 19:34:29 +0200 Subject: [PATCH] added order to list_table --- res/forum/list_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/forum/list_table.php b/res/forum/list_table.php index 06bfc87..e769823 100644 --- a/res/forum/list_table.php +++ b/res/forum/list_table.php @@ -2,9 +2,9 @@ include("../global.php"); -$out = $database -> query("SELECT username FROM user"); +$out = $database -> query("SELECT username FROM user ORDER BY id ASC"); while ($res = $out -> fetch_assoc()) { echo "
" . $res["username"] . "
"; -} +} \ No newline at end of file