原帖由 yunwaaa 于 2008-9-26 01:58 发表
big5的論壇能用嗎???
如果出现书签乱码,这个问题是mysql安装的时候没选择gbk作为默认编码导致的,
这样解决,后台,升级数据库:(会导致所有会员书签丢失,不过即然乱码了,也不在乎丢失了)
复制内容到剪贴板
...
-.- 這樣子上升級数据库當然出現亂碼拉....
DROP TABLE IF EXISTS `cdb_dnovel_bm`;
CREATE TABLE `cdb_dnovel_bm` (
`id` int(10) NOT NULL auto_increment,
`uid` int(10) NOT NULL,
`tid` int(10) NOT NULL,
`subject` varchar(255) NOT NULL,
`page` int(10) NOT NULL,
`dateline` int(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk ;
紅色的地方你放入gbk 難怪會亂碼-.-"
DROP TABLE IF EXISTS `cdb_dnovel_bm`;
CREATE TABLE `cdb_dnovel_bm` (
`id` int(10) NOT NULL auto_increment,
`uid` int(10) NOT NULL,
`tid` int(10) NOT NULL,
`subject` varchar(255) NOT NULL,
`page` int(10) NOT NULL,
`dateline` int(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=big5 ;
這樣才是正確的..如果是utf8就utf8代替藍色的字.
明白了嗎?
big5演示= http://www.ex-angels.com/dnovel.php
[ 本帖最后由 專屬天使 于 2008-9-26 14:56 编辑 ] |