数据库配置信息
$GLOBALS['config']['db'] = array( 'host' => array( 'master' => 'localhost:3306', 'slave' => array('localhost:3306') ), 'user' => 'root', 'pass' => 'root', 'name' => 'game3', 'charset' => 'utf-8', ); $GLOBALS['config']['bbs'] = array( 'host' => array( 'master' => 'localhost:3306', 'slave' => array('localhost:3306') ), 'user' => 'root', 'pass' => 'root', 'name' => 'abs', 'charset' => 'utf-8', ); 想要在abs 中获取game3中一个表的数据 |
|