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?