I have 3 arrays called player1, player2, score:
Array ( [0] => player1 [1] => player1 [2] => player1 )
Array ( [0] => player2 [1] => player3 [2] => player2 )
Array ( [0] => 2-3 [1] => 1-3 [2] => 2-0 )
What I need is to join all arrays like this
[0] => player1, player2, 2-3
[1] => player1, player3, 1-3
[2] => player1, player2, 2-0
I am pretty new to PHP and I used the search bar before posting. Please do not down vote.