Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2002-08-13 01:22
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);
?>