This is the class for access
Class accessdbm
{
var $COUNT = 0;
var $VALUES = array ();
var $FILE = "";
var $ERROR = "";
var $EXISTS = false;
var $STATIC = false;
var $EXACT = false;
var $DBM;
Older version of PHP can ' t do the ' new ClassName (args) '
Use Initilize () If this is the case.
// *******************************************************
function accessdbm ($dbmFile, $static = 0)
{
Global $php _errormsg;
if (!empty ($dbmFile))
{
if (file_exists ($dbmFile))
{
$this->exists = true;
}
if ($static! = 0)
{
$this->static = true;
}
$this->file = $dbmFile;
}
Return
}
// *******************************************************
Identical to ACCESSDBM
function Initialize ($dbmFile, $static = 0)
{
Global $php _errormsg;
http://www.bkjia.com/PHPjc/631825.html www.bkjia.com true http://www.bkjia.com/PHPjc/631825.html techarticle is this the class for access? Class accessdbm {var $COUNT = 0, var $VALUES = array (), var $FILE =; var $ERROR =; var $EXISTS = false; var $STATIC = f Alse; var $EXACT = false; var $DBM; //...