using the below code for decoding json
$categories = json_decode($data); $categories = $categories->data;
where i get this
Erm, you can just set the 2nd parameter to convert JSON into an array instead of into an object:
$categories = json_decode($data, true);