FabrikaHradekTour/res/forum/list_table.php

10 lines
212 B
PHP
Raw Normal View History

2024-05-20 19:15:35 +02:00
<?php
include("../global.php");
2024-05-20 19:34:29 +02:00
$out = $database -> query("SELECT username FROM user ORDER BY id ASC");
2024-05-20 19:15:35 +02:00
while ($res = $out -> fetch_assoc())
{
echo "<div class=\"output\">" . $res["username"] . "</div>";
2024-05-20 19:34:29 +02:00
}