This question already has an answer here:
I want to concatenate two arrays like this:
$cars=array("Volvo","BMW","Toyota");
$speed=array("210","220","330");
$merge=array_merge($cars,$speed);
Expected output:
array(
0=>Volvo 210
1=>BMW 220
2=>Toyota 330
)
</div>