Array
(
[0] => Array
(
[lead_id] => 1
[employee_id] => 2
[update_date] => 2016-11-25
[lead_status] => Fresh Leads
[reason] => Deal Won
[notes] => Array
(
[0] => Array
(
[notes] => Notes 1
)
[1] => Array
(
[notes] => Notes 2
)
[2] => Array
(
[notes] => Notes 3
)
)
)
[1] => Array
(
[lead_id] => 1
[employee_id] => 5
[update_date] => 2016-11-25
[lead_status] => Fresh Leads
[reason] => Deal Won
[notes] => Array
(
[0] => Array
(
[notes] => Notes 1
)
[1] => Array
(
[notes] => Notes 2
)
[2] => Array
(
[notes] => Notes 3
)
)
)
[2] => Array
(
[lead_id] => 3
[employee_id] => 2
[update_date] => 2016-11-25
[lead_status] => Fresh Leads
[reason] => Deal Won
[notes] => Array
(
[0] => Array
(
[notes] => Notes 1
)
[1] => Array
(
[notes] => Notes 2
)
[2] => Array
(
[notes] => Notes 3
)
)
)
)
This is my json array.
How can I get the values of each fields from this array?
Please help