I am using php to decode this json data https://use.gameapis.net/mc/query/info/play.mineverge.net all my code works fine and I get all the JSON data fine although when I try to get players: max: it will not load the page.
Working JSON code to get online players:
$playersonline->players->online;
Not working code because MAX interfers with PHP
$playersonline->players->max;
So in short max interferes with PHP so what do I do?