I need to get the JSON data from here https://use.gameapis.net/mc/query/info/play.mineverge.net
I need the "online": 126 to display in my web page.
"players": {
"online": 126,
"max": 500
here is my current code that (not working) to get the JSON. Am I doing something wrong? It displays everything not just "online":
$playeronline = file_get_contents ('https://use.gameapis.net/mc/query/info/' . $server);
echo $playeronline->players[1];
echo $playeronline['online'];