I am sure this is a complete noob question but I am trying to iterate through an api response from stripe.com and I am able to echo out the array in php to be something like this:
{ "count": 3, "data": [ { "amount": 29900, "object": "plan", "interval": "month", "livemode": false, "currency": "usd", "name": "vb Group unlimited", "id": "vb-std-group2" }, { "amount": 9900, "object": "plan", "interval": "year", "livemode": false, "currency": "usd", "name": "vb Group to 20", "id": "vb-std-group" }, { "amount": 1900, "object": "plan", "interval": "year", "livemode": false, "currency": "usd", "name": "vb-Individual", "id": "vb-std-individual" } ] } What I'm trying to do is echo out the "data" array info. Thanks for any insight.