h5ai-flpsite/api/get-username.php
2026-08-08 20:18:20 +12:00

4 lines
116 B
PHP

<?php
header('Content-Type: application/json');
echo json_encode(['user' => $_SERVER['REMOTE_USER'] ?? 'Guest']);
?>