I have two arrays:
$listx= array('a','b')
$listy= array('one','two','three','four','five','six','seven')
I would like to display array data in the format given below:
a one,
b two,
a three,
b four,
a five,
b six,
a seven
How can I do this?
Thanks in advance for the help.