I want to display some information from the API https://steamgaug.es/api/v2 on my website.
This is my current code:
$steamStatusJson = @file_get_contents("https://steamgaug.es/api/v2");
$steamStatus = json_decode($steamStatusJson);
$csgoStatus = $steamStatus->ISteamGameCoordinator->730->online;
$csgoplayerssearching = $steamStatus->ISteamGameCoordinator->730->stats->players_searching;
$csgoplayers = $steamStatus->ISteamGameCoordinator->730->stats->players_online;
I always get this error message:
FATAL ERROR syntax error, unexpected '730' (T_LNUMBER), expecting identifier (T_STRING) or variable