this is the print_r of the arrays and the last one is the result:
Array ( [0] => 28 [1] => 29 [2] => 30 [3] => 31 [4] => 32 [5] => 33 [6] => 34 )
Array ( [0] => 28 [1] => 29 [2] => 30 [3] => 31 [4] => 32 [5] => 33 [6] => 34 [7] => 35 )
result:
Array ( [1] => 29 [2] => 30 [3] => 31 [4] => 32 [5] => 33 [6] => 34 )
I want to get an array that holds 35 entries since its the only one missing and for some reason I get entire first array if I put the second array first in the function I get all entries of the second one.