<?php
// $Id: class.Debug.php,v 1.2 2003/04/29 17:55:24 rufustfirefly Exp $
// $Author: rufustfirefly $
// class Debug
class Debug {
function Debug () {
// Doesn't really do much...
return(TRUE);
} // end constructor Debug
function init() {
global $sql;
$result=$sql->query("DROP TABLE test");
$result=$sql->query($sql->create_table_query(
'test',
array(
'name' => SQL__CHAR(10),
'other' => SQL__CHAR(12),
'phone' => SQL__INT(0),
'id' => SQL__SERIAL
),array('id')
));
return($result);
} // end method Debug->init
} // end class Debug
?>