how to echo/access the 'get' index of the given array in PHP syntax
Posted
by OM The Eternity
on Stack Overflow
See other posts from Stack Overflow
or by OM The Eternity
Published on 2010-06-07T06:52:22Z
Indexed on
2010/06/07
7:12 UTC
Read the original article
Hit count: 186
I have the array variable say $value, and it has the below given array
[navigation] => navigationHistory Object
(
[path] => Array
(
[0] => Array
(
[page] => order_form.php
[mode] => NONSSL
[get] => Array
(
[id] => 31
)
)
)
)
how to echo/access the 'get' index of the given array in PHP syntax
© Stack Overflow or respective owner