Rev 26 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
<?php
class client extends database {
private var $definition; // the definition of the table in the database
public function __construct ( $definition = null ) {
parent::__construct();
if ( isset( $definition ) )
$this->definition = $definition;
} // __construct
public function __destruct() {
parent::__destruct();
} // destruct
} // class client
?>