My array looks like this:
Array
( [myarr] => Array (
[504] => 2
[508] => 25
)
)
Is it possible to echo a certain position of this array? I have tried:
echo $_SESSION['myarr'][0][0];
I can't seem to get anything to echo back.
EDIT: to be more specific.. Is it possible to echo it based on numeric index?
0in$_SESSION['myarr']. – xdazz Aug 7 '12 at 2:33[0]Your array contains$_SESSION['myarr'][504]and 508 – Michael Berkowski Aug 7 '12 at 2:33