mirror of
https://github.com/PhantomGamesDevelopment/PGD-Connect--Tribes-2-.git
synced 2026-01-19 19:44:46 +00:00
16 lines
168 B
PHP
16 lines
168 B
PHP
|
|
<html>
|
||
|
|
<head>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<?php
|
||
|
|
require("Connected.php");
|
||
|
|
$GUID = $_GET['guid'];
|
||
|
|
if(isConnected($GUID)) {
|
||
|
|
echo "yes";
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
echo "no";
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
</body>
|
||
|
|
</html>
|