Greetings,
I am trying to figure out how best to parse a multi-demensial array, $this:
$this = array('indexA' => "Yeah", "Huh", "Alright", "Why", "So Vhat", "Test", "Arms",
'indexB' => "120000", "95000", "74000", "63000", "54000", "49000", "32000",
'indexC' => "500");
I would like to be able to reference a value from this array by each "subarrays" index and element number
EX: $value[indexA][4]
So something like:
foreach ($array as $index => $values)
{
print "$value[indexA][6]";
}
This however does not work and I cant seem to find alot of information on this in PHP, anyone have any clues?
Thanks for any help!