diff options
author | Stefanie Eckner <stefanie@eckner.net> | 2023-12-30 16:31:02 +0100 |
---|---|---|
committer | Stefanie Eckner <stefanie@eckner.net> | 2023-12-30 16:31:02 +0100 |
commit | 4907b581ecbb06639e853539a5655c834a64aa1b (patch) | |
tree | 008c0726ebd59b060fe7a84b1dedb25fae6f5d50 | |
parent | af0c6f201ff83eab26e5f48736a82f4838bc82c6 (diff) | |
download | computer-time-limit-4907b581ecbb06639e853539a5655c834a64aa1b.tar.xz |
server: zeige, ob aktiv
-rw-r--r-- | computer-time-limit.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/computer-time-limit.php b/computer-time-limit.php index 1605ad5..6f29bad 100644 --- a/computer-time-limit.php +++ b/computer-time-limit.php @@ -94,6 +94,14 @@ while ($row = $result->fetchArray()) { print($noch); print(')'); + ?></td><td><?php + + if ($row['aktiv']) { + print('eingeloggt'); + } else { + print(' '); + } + ?></td></tr> <?php } |