roblonium-web/Game/GetCurrentUser.ashx

7 lines
84 B
Plaintext

<?php
if ($_COOKIE["id"] == null) {
echo "null";
}else {
echo $_COOKIE["id"];
}
?>