I have the following Array which is stored in $_SESSION I wish to itterate through and display the values in the format stated below the array:
Array
(
[step_one] => Array
(
[width-ft] => 2
[width-in] => 0
[height-ft] => 2
[height-in] => 0
)
[step_two] => Array
(
[range] => penshaw
)
[step_three] => Array
(
[style] => arch
)
[step_four] => Array
(
[detail] => double bow
)
[step_five] => Array
(
[decor] => circle
)
[step_six] => Array
(
[basket] => round collar
)
[step_seven] => Array
(
[finial] => spear
)
)
Now How to iterate out the values like so:
width-ft: 2
width-in: 0
height-ft: 2
height-in: 0
range: penshaw
style: arch
detail: double bow
decor: circle
basket: round collar
finial: spear
Thanks