I have a few numeric values (key) stored in db. When I run a loop I output those and try to replace them with array values.
When I do this
$myArray[$myVal]
I get no results, but if put any numeric value -- it works. So I ran a test to see if I'm getting the values from db and apparently I do.
$myArray[5].' -- '.$myVal
array Value A -- 3
array Value A -- 8
array Value A -- 27
...
Stumped.