make a php file and put the plugin code into it
PHP Code:
function getAPI($command) {
$er = error_reporting(0);
$result = file_get_contents("http://147.202.66.3:8085/?api.".$command);
error_reporting($er);
return $result;
}
echo "Number of users: ".getAPI("UserCount")."<br/>";
echo "Rooms available: ".getAPI("RoomList");
and call the file from your browser
Because i'm getting an error if i want to try file_get_contents() from your ip, and if i call it direct
http://147.202.66.3:8085/?api.UserCount i'm gettin the message that its forbidden