I have the following array which I want to make readable for users:
Array
(
[3] => Array
(
[id] => 3
[price] => 4.00
[per] => day
[count] =>
[type] => single
[status] => T
[extra_quantity] => 1
)
[2] => Array
(
[id] => 2
[price] => 12.00
[per] => day
[count] =>
[type] => single
[status] => T
[extra_quantity] => 1
)
)
I want to echo this to show users the following readable line for every subarray:
[id] = [price] per [day]
I am fairly new to arrays, especially nested one like the one I have above, how should I go with this to get an output like I need? Thanks!