www.gusucode.com > 2046网博士成品网站管理系统 PHP网站源码程序 > 2046/2046/huanzeng/admin/func/comm.inc.php

    <?php

include_once(ROOTPATH."base/language/".$sLan.".php");

HzConfig();

//模块参数设置
function HzConfig(){

	global $msql;

	$msql->query("select * from {P}_hz_config");
	while($msql->next_record()){
		$variable=$msql->f('variable');
		$value=$msql->f('value');
		
		$GLOBALS["HZCONF"][$variable]=$value;
	}

}


?>