hello,
i have array
Array
(
[certificate] => Array
(
['name'] => Array
(
[1] => 11
[2] => 22
[3] => 33
[5] => 55
[6] => 66
)
['date'] => Array
(
[1] => 1111
[2] => 2222
[3] => 3333
[5] => 5555
[6] => 6666
)
)
I want to make echo name=>1 value with date=>1 value.
though,Indexes of both array are same but are not in serial.
like in above case we have missed 4th index.
so how to merger these two?