403 Forbidden

You do not have permission to access this page.

"; exit(); } // Fetch all users for display try { $pdo = db(); $stmt = $pdo->query("SELECT id, email, role, subscription_plan, subscription_expires_at, created_at FROM users ORDER BY created_at DESC"); $users = $stmt->fetchAll(PDO::FETCH_ASSOC); } catch (PDOException $e) { $error = "Database error: " . $e->getMessage(); $users = []; } ?>

ID