session_start(); $_SESSION['test'] = '123'; echo "Session ID: " . session_id() . "
"; echo "Session test value: " . ($_SESSION['test'] ?? 'NOT SET');