PlanetSide Universe - View Single Post - Planetside 2 Status Server
View Single Post
Old 2014-08-13, 10:53 AM   [Ignore Me] #3
zyzko
Private
 
Re: Planetside 2 Status Server


Hey,

Using PHP :

Code:
<?php
//Just change world_id value - 10 is Miller
$json = file_get_contents("http://census.soe.com/get/ps2/world/?world_id=10"); 
$status = json_decode($json, true); 
foreach($status[world_list] as $a => $b) 
{ 
      if($b[world_id] == 10) 
      { 
      echo "Server ".$b[name][fr]." ".$b[state]." ! "; 
      } 
}
?>
zyzko is offline