I am needing to loop throgh a mulit-dininsional array
(example: $norm_table_info[0][1])
Ho wo I loop through both key value pairs?
((example here is what I would typically do for a one diminsional array))
----------->
reset($norm_table_info);
while (list($k, $v) = each($norm_table_info)){
echo $k ." - " .$v ."<br>";
}
============================================
Thanks in advance!!! =================================
Imagination is more important than knowledge.
(A.E.)
(example: $norm_table_info[0][1])
Ho wo I loop through both key value pairs?
((example here is what I would typically do for a one diminsional array))
----------->
reset($norm_table_info);
while (list($k, $v) = each($norm_table_info)){
echo $k ." - " .$v ."<br>";
}
============================================
Thanks in advance!!! =================================
Imagination is more important than knowledge.
(A.E.)