<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>「phpMyAdmin 讀 MySQL 資料庫是亂碼解決方式」的迴響</title>
	<atom:link href="http://jerome.anyday.com.tw/archives/10/feed" rel="self" type="application/rss+xml" />
	<link>http://jerome.anyday.com.tw/archives/10</link>
	<description>就替生活留下一些記錄吧！</description>
	<pubDate>Tue, 06 Jan 2009 13:59:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>作者：Gary</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-189805</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Tue, 03 Jun 2008 03:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-189805</guid>
		<description>我剛看過道出來的sql檔，檔頭是這樣的

-- MySQL dump 10.9
--
-- Host: localhost    Database: xtc_alpha
-- ------------------------------------------------------
-- Server version	4.1.10a-Max

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;

--
-- Table structure for table `address_book`
--

DROP TABLE IF EXISTS `address_book`;
CREATE TABLE `address_book` (
  `address_book_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL default '0',
  `entry_gender` char(1) NOT NULL default '',
  `entry_company` varchar(255) default NULL,
  `entry_firstname` varchar(32) NOT NULL default '',
  `entry_lastname` varchar(32) NOT NULL default '',
  `entry_street_address` varchar(64) NOT NULL default '',
  `entry_suburb` varchar(32) default NULL,
  `entry_postcode` varchar(10) NOT NULL default '',
  `entry_city` varchar(32) NOT NULL default '',
  `entry_state` varchar(32) default NULL,
  `entry_country_id` int(11) NOT NULL default '0',
  `entry_zone_id` int(11) NOT NULL default '0',
  `address_date_added` datetime default '0000-00-00 00:00:00',
  `address_last_modified` datetime default '0000-00-00 00:00:00',
  PRIMARY KEY  (`address_book_id`),
  KEY `idx_address_book_customers_id` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


我後來用NaviCat 8來處理，中文是OK正常了，但是我重新倒入phpMyAdmin後，也是中文OK，不過網頁還是出錯！

您有認識可以處理這個的MIS嗎？</description>
		<content:encoded><![CDATA[<p>我剛看過道出來的sql檔，檔頭是這樣的</p>
<p>-- MySQL dump 10.9<br />
--<br />
-- Host: localhost    Database: xtc_alpha<br />
-- ------------------------------------------------------<br />
-- Server version	4.1.10a-Max</p>
<p>/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;<br />
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;<br />
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;<br />
/*!40101 SET NAMES utf8 */;<br />
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;<br />
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;<br />
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;</p>
<p>--<br />
-- Table structure for table `address_book`<br />
--</p>
<p>DROP TABLE IF EXISTS `address_book`;<br />
CREATE TABLE `address_book` (<br />
  `address_book_id` int(11) NOT NULL auto_increment,<br />
  `customers_id` int(11) NOT NULL default '0',<br />
  `entry_gender` char(1) NOT NULL default &quot;,<br />
  `entry_company` varchar(255) default NULL,<br />
  `entry_firstname` varchar(32) NOT NULL default &quot;,<br />
  `entry_lastname` varchar(32) NOT NULL default &quot;,<br />
  `entry_street_address` varchar(64) NOT NULL default &quot;,<br />
  `entry_suburb` varchar(32) default NULL,<br />
  `entry_postcode` varchar(10) NOT NULL default &quot;,<br />
  `entry_city` varchar(32) NOT NULL default &quot;,<br />
  `entry_state` varchar(32) default NULL,<br />
  `entry_country_id` int(11) NOT NULL default '0',<br />
  `entry_zone_id` int(11) NOT NULL default '0',<br />
  `address_date_added` datetime default '0000-00-00 00:00:00',<br />
  `address_last_modified` datetime default '0000-00-00 00:00:00',<br />
  PRIMARY KEY  (`address_book_id`),<br />
  KEY `idx_address_book_customers_id` (`customers_id`)<br />
) ENGINE=MyISAM DEFAULT CHARSET=latin1;</p>
<p>我後來用NaviCat 8來處理，中文是OK正常了，但是我重新倒入phpMyAdmin後，也是中文OK，不過網頁還是出錯！</p>
<p>您有認識可以處理這個的MIS嗎？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：jerome</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-189791</link>
		<dc:creator>jerome</dc:creator>
		<pubDate>Fri, 30 May 2008 05:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-189791</guid>
		<description>@&lt;a href="#comment-188940" rel="nofollow"&gt;我認識的 Gary&lt;/a&gt;: 

用 UTF-8 格式大概會大上 1/3 ，其實以使用量的來說，算是很小的空間耶！
你會不會太省呀！？

@&lt;a href="#comment-189772" rel="nofollow"&gt;Gary&lt;/a&gt;: 

對不起， Server 被我弄掛好幾天，現在才回您。您的問題應該是單純的「連線校對」的問題而已吧！看看您 dump 出來的那一個 sql ，應該可以看出端倪</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-188940" rel="nofollow" class="liinternal">我認識的 Gary</a>: </p>
<p>用 UTF-8 格式大概會大上 1/3 ，其實以使用量的來說，算是很小的空間耶！<br />
你會不會太省呀！？</p>
<p>@<a href="#comment-189772" rel="nofollow" class="liinternal">Gary</a>: </p>
<p>對不起， Server 被我弄掛好幾天，現在才回您。您的問題應該是單純的「連線校對」的問題而已吧！看看您 dump 出來的那一個 sql ，應該可以看出端倪</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Gary</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-189772</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Mon, 26 May 2008 17:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-189772</guid>
		<description>正在商腦經MYSQL亂碼的問題，發現這個網站，我自己的機器因為硬體問題，換到新機器後，把用mysql dump備出來的*.sql檔案resore後，發現整個網站都是亂碼，然後我用phpMyAdmin去檢查，也是亂碼。

最後我想用文字編譯器Notepad++看！哇！也是亂碼，請問各位前輩，這還有救嗎？

我在phpMyAdmin中看到我的資料表的連線校對是"latin1_swedish_ci"....

我的網站
http://www.aquariums.tw</description>
		<content:encoded><![CDATA[<p>正在商腦經MYSQL亂碼的問題，發現這個網站，我自己的機器因為硬體問題，換到新機器後，把用mysql dump備出來的*.sql檔案resore後，發現整個網站都是亂碼，然後我用phpMyAdmin去檢查，也是亂碼。</p>
<p>最後我想用文字編譯器Notepad++看！哇！也是亂碼，請問各位前輩，這還有救嗎？</p>
<p>我在phpMyAdmin中看到我的資料表的連線校對是&quot;latin1_swedish_ci&quot;....</p>
<p>我的網站<br />
<a href="http://www.aquariums.tw" rel="nofollow" class="liexternal">http://www.aquariums.tw</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Gary</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-188940</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Tue, 01 Apr 2008 16:19:05 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-188940</guid>
		<description>哇靠, 沒想到在找 MySQL 的資料也可以找到 J 大的站來, 真是太強了...

正在查 MySQL 用 latin1 跟 UTF8 的大小差異, 網路上有人說轉換大小多了一倍... 但是要考慮未來也許有不同世界語言的共用性 utf8 好像比較有未來性, 至少不用轉換的麻煩, 真是左右難啊.... =,=

也許我應該在可能用到 UTF8 的欄位改就好, 也許可以省一點空間, 但是要弄成醬子整自己嗎? 一個table 不同編碼的欄位也不知會不會容易出錯... Orz</description>
		<content:encoded><![CDATA[<p>哇靠, 沒想到在找 MySQL 的資料也可以找到 J 大的站來, 真是太強了...</p>
<p>正在查 MySQL 用 latin1 跟 UTF8 的大小差異, 網路上有人說轉換大小多了一倍... 但是要考慮未來也許有不同世界語言的共用性 utf8 好像比較有未來性, 至少不用轉換的麻煩, 真是左右難啊.... =,=</p>
<p>也許我應該在可能用到 UTF8 的欄位改就好, 也許可以省一點空間, 但是要弄成醬子整自己嗎? 一個table 不同編碼的欄位也不知會不會容易出錯... Orz</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：峰</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-19615</link>
		<dc:creator>峰</dc:creator>
		<pubDate>Tue, 03 Jul 2007 05:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-19615</guid>
		<description>感謝您熱心的幫助...
亂碼終於得到解決辦法了!!
在Dreamweaver裡把網站和phpMyAdmin設定好連線後!
會在網站目錄下產生一個名為Connections的資料夾!
裡面有一個.PHP檔!裡面紀錄與phpMyAdmin相關設定!
在最後行填上mysql_query("SET NAMES 'big5'");
一切顯示正常中文了!!
再次感謝^^</description>
		<content:encoded><![CDATA[<p>感謝您熱心的幫助...<br />
亂碼終於得到解決辦法了!!<br />
在Dreamweaver裡把網站和phpMyAdmin設定好連線後!<br />
會在網站目錄下產生一個名為Connections的資料夾!<br />
裡面有一個.PHP檔!裡面紀錄與phpMyAdmin相關設定!<br />
在最後行填上mysql_query(&quot;SET NAMES 'big5'&quot;);<br />
一切顯示正常中文了!!<br />
再次感謝^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：jerome</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-19123</link>
		<dc:creator>jerome</dc:creator>
		<pubDate>Mon, 02 Jul 2007 07:26:34 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-19123</guid>
		<description>&lt;strong&gt;to : 峰&lt;/strong&gt;

說實話，這樣我真的判斷不出來耶！ :sad:</description>
		<content:encoded><![CDATA[<p><strong>to : 峰</strong></p>
<p>說實話，這樣我真的判斷不出來耶！ <img src='http://jerome.anyday.com.tw/wp-includes/images/smilies/icon_sad.gif' alt=':sad:' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：峰</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-18245</link>
		<dc:creator>峰</dc:creator>
		<pubDate>Fri, 29 Jun 2007 22:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-18245</guid>
		<description>感謝您的回覆!!
抱歉我沒有說清楚!!
有用到動態顯示的網頁是要按下線上購物那裡才是!!

我這本書上的Dreamweaver是mx 2004(目前我用8編輯)
php是Version 4.2.3
phpMyAdmin是2.5.6
會不和主機差有隔閡&#62;</description>
		<content:encoded><![CDATA[<p>感謝您的回覆!!<br />
抱歉我沒有說清楚!!<br />
有用到動態顯示的網頁是要按下線上購物那裡才是!!</p>
<p>我這本書上的Dreamweaver是mx 2004(目前我用8編輯)<br />
php是Version 4.2.3<br />
phpMyAdmin是2.5.6<br />
會不和主機差有隔閡&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：jerome</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-18127</link>
		<dc:creator>jerome</dc:creator>
		<pubDate>Fri, 29 Jun 2007 10:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-18127</guid>
		<description>&lt;strong&gt;to: 峰&lt;/strong&gt;

我沒看到亂碼呀！
都很正常呀！

內容不是這個嗎？

&lt;blockquote&gt;新聞一  
 外交部政務次長高英茂今天下午表示，十七日（台北時間今天晚上）我們在世界衛生大會（ＷＨＡ）推動投票將是歷史創舉，「台灣雖小，但要挑戰... (  &lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p><strong>to: 峰</strong></p>
<p>我沒看到亂碼呀！<br />
都很正常呀！</p>
<p>內容不是這個嗎？</p>
<blockquote><p>新聞一<br />
 外交部政務次長高英茂今天下午表示，十七日（台北時間今天晚上）我們在世界衛生大會（ＷＨＡ）推動投票將是歷史創舉，「台灣雖小，但要挑戰... (  </p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>作者：峰</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-18120</link>
		<dc:creator>峰</dc:creator>
		<pubDate>Fri, 29 Jun 2007 06:39:08 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-18120</guid>
		<description>我這本書2004年的會不有關&#62;</description>
		<content:encoded><![CDATA[<p>我這本書2004年的會不有關&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：峰</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-18119</link>
		<dc:creator>峰</dc:creator>
		<pubDate>Fri, 29 Jun 2007 06:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-18119</guid>
		<description>您說的是這裡嗎??
http://www.test.pingjean.com//test/1.JPG
我主機上phpMyAdmin的版本是但我不知道php的版本從哪裡看!
http://www.test.pingjean.com//test/2.JPG
這是測試的亂碼頁
http://www.test.pingjean.com/test/index.htm

我這本書2004年的會不有關&#62;</description>
		<content:encoded><![CDATA[<p>您說的是這裡嗎??<br />
<a href="http://www.test.pingjean.com//test/1.JPG" rel="nofollow" class="liexternal">http://www.test.pingjean.com//test/1.JPG</a><br />
我主機上phpMyAdmin的版本是但我不知道php的版本從哪裡看!<br />
<a href="http://www.test.pingjean.com//test/2.JPG" rel="nofollow" class="liexternal">http://www.test.pingjean.com//test/2.JPG</a><br />
這是測試的亂碼頁<br />
<a href="http://www.test.pingjean.com/test/index.htm" rel="nofollow" class="liexternal">http://www.test.pingjean.com/test/index.htm</a></p>
<p>我這本書2004年的會不有關&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：jerome</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-17948</link>
		<dc:creator>jerome</dc:creator>
		<pubDate>Thu, 28 Jun 2007 11:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-17948</guid>
		<description>&lt;strong&gt;to: 峰&lt;/strong&gt;

我沒看到你的 database ，所以不敢斷言
但是有一點你檢查看看

HM 他的 cpanel 創造 database ，內定值的 Collation 是採用 latin1_swedish_ci 格式喔，請新建一個 database ，然後到 phpMyAdmin 找到那一個 database，在 Operations （管理）把 內定值的 Collation 是由 latin1_swedish_ci 改成 utf8_general_ci 看看</description>
		<content:encoded><![CDATA[<p><strong>to: 峰</strong></p>
<p>我沒看到你的 database ，所以不敢斷言<br />
但是有一點你檢查看看</p>
<p>HM 他的 cpanel 創造 database ，內定值的 Collation 是採用 latin1_swedish_ci 格式喔，請新建一個 database ，然後到 phpMyAdmin 找到那一個 database，在 Operations （管理）把 內定值的 Collation 是由 latin1_swedish_ci 改成 utf8_general_ci 看看</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：峰</title>
		<link>http://jerome.anyday.com.tw/archives/10#comment-17915</link>
		<dc:creator>峰</dc:creator>
		<pubDate>Thu, 28 Jun 2007 09:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://jerome.anyday.com.tw/wp/?p=10#comment-17915</guid>
		<description>您好!!我是新手!!
想請教您!
我是租用HostMonster主機!它的後台是CPanel!
目前我剛學著做購物系統!照著一本博碩的書在做!
我利用它裡面的提供的練習檔來做!
也把他提供的.sq給載入到主機上的phpMyAdmin裡了!
在phpMyAdmin看資料是正確顯示繁中!
Dreamweaver和主機上的phpMyAdmin也可正常連線!
做了一頁我上傳後實際開啟卻都是亂碼!
是用php!是過改變一些文字校對語系等等~
但都沒有用!不知道是什麼原因!!
需要我提供什麼請告訴我!!感謝您!!</description>
		<content:encoded><![CDATA[<p>您好!!我是新手!!<br />
想請教您!<br />
我是租用HostMonster主機!它的後台是CPanel!<br />
目前我剛學著做購物系統!照著一本博碩的書在做!<br />
我利用它裡面的提供的練習檔來做!<br />
也把他提供的.sq給載入到主機上的phpMyAdmin裡了!<br />
在phpMyAdmin看資料是正確顯示繁中!<br />
Dreamweaver和主機上的phpMyAdmin也可正常連線!<br />
做了一頁我上傳後實際開啟卻都是亂碼!<br />
是用php!是過改變一些文字校對語系等等~<br />
但都沒有用!不知道是什麼原因!!<br />
需要我提供什麼請告訴我!!感謝您!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
