I have an array like this:
[0] => Array
(
[0] => Array
(
[Foo] => Bar
[Foo2] => String1
)
)
[1] => Array
(
[0] => Array
(
[Foo] => Bar
[Foo2] => String2
)
)
While the one I'm working with is a lot larger, that's the general form of it. I'm trying to look at each value relative to Foo, and if there is a repeat in one of the arrays, take the subsequent Foo2 value and "push" it to a new array, essentially looking like this:
[0] => Array
(
[0] => Array
(
[Foo] => Bar
[Foo2] => String1,
String2
)
)
Basically I just want to know if this is even possible!!