$totalRounds = 1;
$teams= array("Team 1","Team 2","Team 3","Team 4","Team 5");
echo 'Total Teams: ' , $totalTeams = count($teams) , '
';
$turns = $totalTeams;
for($round=1; $round<$totalRounds+1; $round++){
for($homeTeam = 0; $homeTeam < $totalTeams - 1; $homeTeam++) {
for($awayTeam=$homeTeam + 1; $awayTeam < $totalTeams; $awayTeam++) {
$home= $teams[$homeTeam];
$away= $teams[$awayTeam];
echo "$home vs $away
";
}
}
}
3/related/default