roblonium-web/Friend/AreFriends

8 lines
176 B
Plaintext

<?php
$everyoneisfriendswitheveryone = true;
if ($_GET["userId"] !== null) {
if ($everyoneisfriendswitheveryone == true) {
echo '<Value Type="boolean">true</Value>';
}
}
?>