Dear all,
I need your help :)
i have array like this-->
$myarray([0]=>a,1
[1]=>b,2
[2]=>a,2
)
i want to split each of the array element, i want to retrieve the part a and b of each array elemet and (maybe) store it in different array like this:
$myarray1([0]=>a
[1]=>b
)
Is that possible to do?
Thank you :D