Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. require('JSONAPI.php');
  3.  
  4. // On remplie les paramètres de connexion à JSONAPI
  5. $ip = "ip";
  6. $port = port;
  7. $user = "user";
  8. $pass = "mdp";
  9. $api = new JSONAPI($ip, $port, $user, $pass);
  10.  
  11.  
  12. $PlayerCount = $api->call("getPlayerCount");
  13. print_r($PlayerCount["success"]);
  14.  
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement