Can someone help me access this array please I'm having trouble with indexes.
array(10) {
[0]=>array(2) {
["t"]=>array(1) {
["tag"]=>string(3) "php"
}
[0]=>array(1) {
["NumOccurrances"]=>string(1) "2"
}
}
[1]=>array(2) {
["t"]=>array(1) {
["tag"]=>string(6) "Tomcat"
}
[0]=>array(1) {
["NumOccurrances"]=>string(1) "1"
}
}
}
I want to use it in a foreach loop displaying like "PHP x 2" but am having trouble with the indexes
Thanks
Jonesy