<?php
$json = file_get_contents("http://opensimworld.com/farmstats/farm.json?cmd=recent");
$someArray = json_decode($json, true);
$arrlength = count($someArray);
for ($x = 0; $x < $arrlength; $x++) {
echo $someArray[$x]["username"];
echo " | ";
echo $someArray[$x]["display_name"];
echo " | ";
echo $someArray[$x]["farmPoints"];
echo " | ";
echo $someArray[$x]["farm_lastproduct"];
echo " | ";
echo $someArray[$x]["farm_updated"];
echo "<br>";
}
?>
[
{
"username":"fcooper",
"display_name":"Cody Cooper",
"farmPoints":"1175400",
"farm_updated":"1545096739",
"farm_lastproduct":"EGGS"
},
{
"username":"Fitheach",
"display_name":"Bonnie Stewart",
"farmPoints":"31910",
"farm_updated":"1545092261",
"farm_lastproduct":"MEAT"
}
]