Hej ppls … could someone please help me out with this?
If i have 4 teams (counting points together) and i know how to do it with 2 teams … but i have problems to do it with 4 teams.
Like if team_one is better than team_three but worse than team_two and so on … ;(
This is my sample for two teams…
Would be really great if someone could help me
if ($team_one == $team_two) {
//booth are the same
} elseif ($team_one > $team_two) {
//team_one is better
} else {
//team_two is better
}