<?php /** * */ include_once(SERVER_ROOT."/model/mBase.php"); class mUser extends mBase { private $obj; private $tbl; public function __construct() { $this->obj = new dUser(); $this->tbl = 'tcm_user'; } }