Tracking Logs
All actions, reports, bans, and support history.
$result = $conn->query("SELECT * FROM audit_logs ORDER BY timestamp DESC");
while($row = $result->fetch_assoc()) {
echo "{$row['staff_username']} | {$row['action']} | {$row['target_user']} | {$row['timestamp']} |
";
}