PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Bas Jobsen   roundrobin.php   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: roundrobin.php
Determines a schedule for n-players playing n/2...
Author: By
Last change:
Date: 21 years ago
Size: 159 bytes
 

Contents

Class file image Download
<?
include('./roundrobin.php');
$max_players=10; $start_players=2;
$competition= new RoundRobin($max_players);
$competition->scheldule($start_players);
?>