Hello,
This is what I want but cant figure out how to.
$a is this array PHP Code:
Array
(
[0] => stdClass Object
(
[id] => i1
[cat] => Test1
)
[1] => stdClass Object
(
[id] => i2
[cat] => Test2
)
[2] => stdClass Object
(
[id] => i3
[cat] => Test3
)
[3] => stdClass Object
(
[id] => i4
[cat] => Test4
)
}
This is the array and it has those std classes associated with it. What I am trying to do is to combine all the "cat" names into one array variable.
I want to make $categories an array with all these "cat" as the array values.
How can I do that ?