if i have an array such as:
$testArray['one'] = array();
$testArray['one']['subone'] = somethingone;
$_testArray['one']['subtwo'] = somethingtwo;
and then i want to access these values elsewhere...how would i go about acessing the subone and subtwo items. does this make sense?
i was able to access a one-dimensional array by using something like:
$testArray['one'] = array();
$testArray['one'] = somevalue;
$_testArray['two'] = somevalue2;
and then access it using:
$variable = "one";
so i guess i don't know how to do this for ['one']['subone']
thanks for any help...