Now I have an array looks like this
Array([0] => array([region]=>1[district]=>2[sell]=>3)
[1] => array([region]=>1[district]=>3[sell]=>6)
[2] => array([region]=>1[district]=>4[sell]=>9)
)
And I have an other array look like this
Array([0] => array([buy]=>3)
[1] => array([buy]=>4)
[2] => array([buy]=>5)
)
So the question is how can i combine two array to make it looks like this ? or is there any method to push the second array into the first array?
Array([0] => array([region]=>1[district]=>2[sell]=>3[buy]=>3)
[1] => array([region]=>1[district]=>3[sell]=>6[buy]=>4)
[2] => array([region]=>1[district]=>3[sell]=>9[buy]=>5)
)