query("SELECT COUNT(*) FROM activity_log"); $total_records = $total_stmt->fetchColumn(); $total_pages = ceil($total_records / $limit); // Fetch activity logs $stmt = $pdo->prepare("SELECT * FROM activity_log ORDER BY timestamp DESC LIMIT :limit OFFSET :offset"); $stmt->bindParam(':limit', $limit, PDO::PARAM_INT); $stmt->bindParam(':offset', $offset, PDO::PARAM_INT); $stmt->execute(); $logs = $stmt->fetchAll(PDO::FETCH_ASSOC); require_once __DIR__ . '/../templates/header.php'; ?>
| Usuario | Acción | Detalles | Fecha y Hora |
|---|---|---|---|
| No hay registros de actividad. | |||