我知道 数据库的信息是写在data/common.inc.php的而系统连接数据库时使用的有一个函数是:
function Init($pconnect=FALSE)    {
        $this->linkID = 0;        
        $this->dbHost   =  $GLOBALS['cfg_dbhost'];  //$GLOBALS在哪把信息放入$GLOBALS的?        
$this->dbUser   =  $GLOBALS['cfg_dbuser']; 
        $this->dbPwd    =  $GLOBALS['cfg_dbpwd']; 
        $this->dbName   =  $GLOBALS['cfg_dbname']; 
        $this->dbPrefix =  $GLOBALS['cfg_dbprefix']; 
        $this->result["me"] = 0; 
        $this->Open($pconnect);    }
它是在哪把信息放入$GLOBALS中的?  找不到