hi all,
i have an array called $results; if i print its values(using print_r($results)) i get the values bellow.
My problem is i need to get the value of key, its an array within an array. Does anyone know what im supposed to do.
Array ( [AATSMS] => Array ( [0] => 0 [1] => 2 ) [SUBMITRESULT] => Array ( [0] => 1 ) ) Vals array Array ( [0] => Array ( [tag] => AATSMS [type] => open [level] => 1 ) [1] => Array ( [tag] => SUBMITRESULT [type] => complete [level] => 2 [attributes] => Array ( [ACTION] => enqueued [KEY] => 17730529 [RESULT] => 1 [NUMBER] => 888888888 ) ) [2] => Array ( [tag] => AATSMS [type] => close [level] => 1 ) )
regards
i have an array called $results; if i print its values(using print_r($results)) i get the values bellow.
My problem is i need to get the value of key, its an array within an array. Does anyone know what im supposed to do.
Array ( [AATSMS] => Array ( [0] => 0 [1] => 2 ) [SUBMITRESULT] => Array ( [0] => 1 ) ) Vals array Array ( [0] => Array ( [tag] => AATSMS [type] => open [level] => 1 ) [1] => Array ( [tag] => SUBMITRESULT [type] => complete [level] => 2 [attributes] => Array ( [ACTION] => enqueued [KEY] => 17730529 [RESULT] => 1 [NUMBER] => 888888888 ) ) [2] => Array ( [tag] => AATSMS [type] => close [level] => 1 ) )
regards