PGD-Connect--Tribes-2-/Univ/IsConnected.php

16 lines
168 B
PHP
Raw Permalink Normal View History

2014-06-19 18:43:37 +00:00
<html>
<head>
</head>
<body>
<?php
require("Connected.php");
$GUID = $_GET['guid'];
if(isConnected($GUID)) {
echo "yes";
}
else {
echo "no";
}
?>
</body>
</html>