Mysql_CustomerInformation_Db.object
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. class Mysql_CustomerInformation_Db extends BaseObject {
  3.    var $address;
  4.    var $phone;
  5.    Function Mysql_CustomerInformation_Db( $db_config = '' ) {
  6.       $this->BaseObject( 'Mysql_CustomerInformation_Db' );
  7.       $this->address =
  8.          new Mysql_CustomerAddress_Db( $db_config );
  9.       $this->phone   =
  10.          new Mysql_CustomerPhoneNumber_Db( $db_config );
  11.       $this->debug            = new Debug();
  12.       $this->debug->prefix    = 'Mysql_Db::Mysql_CustomerInformation';
  13.       $this->debug->On();
  14.    }
  15. }
  16. ?>