This commit is contained in:
lizandrogd
2026-01-21 16:42:26 -05:00
parent ac179cec98
commit 0d96fa0029
7 changed files with 189 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
require_once __DIR__ . '/../config/config.php';
$db = Database::getInstance();
$rows = $db->fetchAll('SELECT * FROM operator_activity ORDER BY created_at DESC LIMIT 10');
foreach ($rows as $r) {
echo json_encode($r) . PHP_EOL;
}