mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
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
6 lines
161 B
PHP
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'];
|
|
?>
|