I have this JSON data. How do you parse this with httpful? or in just plain PHP?
I want to be able to display something like
Name: John Doe |
Phone: 0987654321 |
Email: john@doe.com |
Friend's Name: Jane Doe
Name: Rye Dale |
Phone: 0987654321 |
Email: rye@dale.com |
Friend's Name: John Dale
How do I properly parse this?
"group":[
{
"id":"1",
"firstName":"John",
"lastName":"Doe",
"phoneNumber":"0987654321",
"email":"john@doe.com",
"friend":
{
"firstName":"Jane",
"lastName":"Doe",
}
},
{
"id":"2",
"firstName":"Rye",
"lastName":"Dale",
"phoneNumber":"0123456789",
"email":"rye@dale.com",
"friend":
{
"firstName":"John",
"lastName":"Dale",
}
}
]