I have 2 separate arrays, one is just the id's the other is the percentage Id's: Array ( [0] => 3 [1] => 4 [2] => 5 [3] => 6 [4] => 7 }
Percent array: Array ( [0] => 28 [1] => 39 [2] => 17 [3] => 28 [4] => 23
So it would end up like: Array ( [0] => Array
(
[id] => 3
[percent] => 28
)
and so on for each of the pairs?