Well, I looked at the JSON, and it is:
{
"id": 5038,
"title": "Ragefire Chasm Guild Run",
"points": 10,
"description": "Defeat Taragaman the Hungerer while in a guild group.",
"rewardItems": [],
"icon": "spell_shadow_summonfelguard",
"criteria": [{"id": 14320, "description": "Taragaman the Hungerer"}]
}
This corresponds to the PHP code:
$data = array(
"id" => 5038,
"title" => "Ragefire Chasm Guild Run",
"points" => 10,
"description" => "Defeat Taragaman the Hungerer while in a guild group.",
"rewardItems" => array(),
"icon" => "spell_shadow_summonfelguard",
"criteria" => array(array("id" => 14320, "description" => "Taragaman the Hungerer"))
);
Do you get how to access the elements of the array now? 🙂