2007年7月25日 星期三

PHPBB 設定UTF8 資料庫連線

1.首先要把資料庫內的資料"校對"改成UTF8.
2.資料庫連線請參考下面.

db\mysql4.php
找到 (沒改過時應該在48行)
代碼:
$this->db_connect_id = ($this->persistency) ? mysql_pconnect($this->server, $this->user, $this->password) : mysql_connect($this->server, $this->user, $this->password);

下方插入
代碼:
@mysql_query("SET NAMES utf8",$this->db_connect_id);

【下列文章您可能也有興趣】

沒有留言: