Files
Wallos/includes/checkuser.php
Miguel Ribeiro c2e85d6e10 feat: support automatic dark mode
refactor: run linter and cleanup php files
fix: not every payment cycle was shown on the calendar
feat: also show previous payments on the calendar for the current month
2024-06-26 18:11:37 +02:00

6 lines
161 B
PHP

<?php
$query = "SELECT COUNT(*) as count FROM user";
$result = $db->query($query);
$row = $result->fetchArray(SQLITE3_ASSOC);
$userCount = $row['count'];
?>