Hi there
I have to sum some arrays(an array of arrays). The structure of my arrays is like this:
Array([id]=>some_id, [name]=>some_name, [value]=>float_value)
I know that I have N arrays as the one before. I need to sum those with the same id.
any idea?
Example:
**
Array
(
[id] => 1
[name] => John00
[value] => 0.9
)
Array
(
[id] => 2
[name] => Ann01
[value] => 0.011
)
Array
(
[id] => 3
[name] => Ann
[value] => 0.1
)
**