I have 2 to arrays and i want to merge them in a way that the result i get from them 2 arrays alternates..
eg:
$a = array(1,2,3);
$b = array(4,5,6);
how would i merge them so i get the result in this manner:
Result = 1,4,2,5,3,6
Is this possible?? please help
Many thanks in advance.