How to Select key values by index
I want to create datatable but I do not know how to select exact array[1] with key values. Now my datatable cycle returns nothing
Array
(
[0] => Array
(
[0] => Array
(
[success] => 1
[error] => 0
[error_note] =>
)
)
[1] => Array
(
[0] => Array
(
[type_pay] => 0
[oper_type] => 4
[name_pay] => CLICK
[name_oper] => Основной долг
[time_pay] => 2016-05-01 00:00:00
[amount] => 1461128
)
[1] => Array
(
[type_pay] => 1
[oper_type] => 3
[name_pay] => Наличные
[name_oper] => Депозит
[time_pay] => 2016-05-01 00:00:00
[amount] => 207866
)
I somehow started in PHP and decoded the Json into array
$data["reports"] = json_decode(file_get_contents('URL'), true);