I have this data in json file abc.json now, how to display keys and slso data (id & name) from this file and display them in php, but seperately. this is just example. i have lots of data.
[{
"Car": [{
"id": "1",
"name": "Bus"
}, {
"id": "2",
"name": "Truck"
}]
},
{
"Fruit": [{
"id": "1",
"name": "Mango"
}, {
"id": "2",
"name": "Pinapple"
}]
}]