How can I edit this array:
Array
(
[Test] => Array
(
[Post] => Array
(
[0] => 3
[1] => 4
[2] => 5
[3] => 6
[4] => 7
[5] => 8
[6] => 9
)
[Percent] => Array
(
[0] => 28
[1] => 39
[2] => 17
[3] => 28
[4] => 23
[5] => 17
[6] => 17
)
)
)
Into something like : take each key from POST and PERCENT, and pair them up
Array
(
[Test] => Array
(
[0] => Array
(
[Post] => 3
[Percent] => 28
)
)
)
Thanks,
Dave
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---