Mysql_CustomerInformation_Db.object
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:
WEB邮件程序
开发平台:
PHP
- <?php
- class Mysql_CustomerInformation_Db extends BaseObject {
- var $address;
- var $phone;
- Function Mysql_CustomerInformation_Db( $db_config = '' ) {
- $this->BaseObject( 'Mysql_CustomerInformation_Db' );
- $this->address =
- new Mysql_CustomerAddress_Db( $db_config );
- $this->phone =
- new Mysql_CustomerPhoneNumber_Db( $db_config );
- $this->debug = new Debug();
- $this->debug->prefix = 'Mysql_Db::Mysql_CustomerInformation';
- $this->debug->On();
- }
- }
- ?>