HI any one help me to solve the solution
one array having the values like
$array1 = array(1,2,3,4);
$array2 = array(A,B,C,D);
i want to create the new array array using the array1 and array2
like :
$ans = array(1,A,2,B,3 ,C,4,D)
how can i create the new array is there any predefined functions or
any ???
one array having the values like
$array1 = array(1,2,3,4);
$array2 = array(A,B,C,D);
i want to create the new array array using the array1 and array2
like :
$ans = array(1,A,2,B,3 ,C,4,D)
how can i create the new array is there any predefined functions or
any ???
Comment