<?php // Select DB And Set Link Use UTF8 function _select_db_utf() { mysql_select_db($this->db_name, $this->db_link);
// init character mysql_query("SET NAMES utf8", $this->db_link); mysql_query("SET CHARACTER SET utf8", $this->db_link); mysql_query("SET COLLATION_CONNECTION='utf8_general_ci'", $this->db_link);
return true; }
// Select DB And Set Link Use GBK function _select_db_gb() { mysql_select_db($this->db_name, $this->db_link);
// init character mysql_query("SET NAMES gbk", $this->db_link); mysql_query("SET CHARACTER SET gbk", $this->db_link); mysql_query("SET COLLATION_CONNECTION='gbk_chinese_ci'", $this->db_link);