![Picture of jos venes Picture of jos venes](/graphics/unknown.gif)
jos venes - 2023-03-17 08:17:35 -
In reply to message 1 from jos venes
Its this lines, that doesnt work/the rest works as well:
$roundrobin = new roundrobin($teams);
// Generated matches with matchdays and free tickets - because we have an uneven number of teams
echo "<h3>Generated matches with matchdays and free tickets</h3><br />";
$roundrobin->free_ticket_identifer = "FREE TICKET"; //default is "free ticket"
$roundrobin->create_matches();
// Did everything went right?
if ($roundrobin->finished) {
$i = 1;
//Ok, iterating over the matchdays...
while ($roundrobin->next_matchday() !== false) {
echo "-------Matchday ".$i."-------<br />";
//...and the matches of one match day
while ($match = $roundrobin->next_match()) {
echo $match[0]." <b>vs</b> ".$match[1]."<br />";
}
$i++;
echo"<br />";
}
}