I'm new on PHP so my question is how to concat all elements of two arrays, every element from array 1 whith element of array 2??
$array1 = array("zero", "one", "two", "three");
$array2 = array("0", "1", "2", "3");
The output that i want wil be :
array3=array("zero 0", "one 1", "two 2", "three 3")
So i will add a space with first element of array 2 to the first element of array 1 ,a space with second element of array 2 to the second element of array 1 ....