Marijn button #99

Merged
11166932 merged 152 commits from marijn-button into master 2017-01-23 13:25:08 +01:00
Showing only changes of commit 146fc7108b - Show all commits

19
website/queries/user.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
function selectSomeUsers($db, $n) {
return $db->query("
SELECT
`userID`,
`username`,
`role`,
`bancomment`
FROM
`user`
ORDER BY
`username`
LIMIT
$n
");
}
?>