Get the Top Farmers in Satyr Farm
<?php
// Get The JSON Data from the API
$json = file_get_contents("http://opensimworld.com/farmstats/farm.json?cmd=top");
// Convert JSON string to Array
$someArray = json_decode($json, true);
// Loop Through and Print the Data
$arrlength = count($someArray);
for ($x = 0; $x < $arrlength; $x++) {
echo $someArray[$x]["username"]; // Access Username
echo " | ";
echo $someArray[$x]["display_name"]; // Access Display Name data
echo " | ";
echo $someArray[$x]["farmPoints"]; // Access Farm Points data
echo "<br>";
}
?>