Added the files of the project to the repo

This commit is contained in:
alopexc0de
2012-09-20 23:34:38 -04:00
parent a827816c25
commit 3891df50bf
22 changed files with 1710 additions and 0 deletions

11
testserver.php Executable file
View File

@@ -0,0 +1,11 @@
<?php
function GetServerStatus($site, $port)
{
$status = array("OFFLINE", "ONLINE");
$fp = @fsockopen($site, $port, $errno, $errstr, 2);
if (!$fp) {
return $status[0];
} else
{ return $status[1];}
}
?>