<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: PHP &#8211; MySQL: Unicode solution to Chinese, Russian or any language</title>
	<atom:link href="http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/</link>
	<description>Talks on Web Technology and Better Product Development</description>
	<lastBuildDate>Tue, 09 Mar 2010 07:42:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: admin</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-697</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 09 Mar 2010 07:42:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-697</guid>
		<description>@ johnypham 

I guess you are missing somewhere in the process or line(s) of code.</description>
		<content:encoded><![CDATA[<p>@ johnypham </p>
<p>I guess you are missing somewhere in the process or line(s) of code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johnypham</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-696</link>
		<dc:creator>johnypham</dc:creator>
		<pubDate>Tue, 09 Mar 2010 06:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-696</guid>
		<description>I&#039;m NEW to this stuff, but very happy with your code; it&#039;s worked ok, except when do searching. I&#039;m from Vietnam anyway. the search text only work with NO-ACCENT text; for example when I search for &quot;Tháng Bảy (July)&quot;, it return &quot;Thang Bay&quot; only.
Could you point out what is the problem?
Many thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m NEW to this stuff, but very happy with your code; it&#8217;s worked ok, except when do searching. I&#8217;m from Vietnam anyway. the search text only work with NO-ACCENT text; for example when I search for &#8220;Tháng Bảy (July)&#8221;, it return &#8220;Thang Bay&#8221; only.<br />
Could you point out what is the problem?<br />
Many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-678</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 23 Jan 2010 06:36:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-678</guid>
		<description>@ Rajeshkumar

I don&#039;t see any problem in your PHP code.
But other than PHP, there are other steps you must follow.
Please follow each and every step one by one.
That should solve the problem.</description>
		<content:encoded><![CDATA[<p>@ Rajeshkumar</p>
<p>I don&#8217;t see any problem in your PHP code.<br />
But other than PHP, there are other steps you must follow.<br />
Please follow each and every step one by one.<br />
That should solve the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajeshkumar</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-677</link>
		<dc:creator>Rajeshkumar</dc:creator>
		<pubDate>Fri, 22 Jan 2010 10:52:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-677</guid>
		<description>Hai Sir,

         The above code is not working, i did according to your instructions but i dont know why....?

in phpmyadmin i have selected for my database as well as table utf_unicode_ci.

my code is:

                define(&#039;HOSTNAME&#039;, &#039;localhost&#039;);
		define(&#039;USERNAME&#039;, &#039;root&#039;);
		define(&#039;PASSWORD&#039;, &#039;&#039;);
		define(&#039;DATABASE&#039;, &#039;bulb_china&#039;);
		$dbLink = mysql_connect(HOSTNAME, USERNAME, PASSWORD);
		mysql_query(&quot;SET character_set_results=utf8&quot;, $dbLink);
		mb_language(&#039;uni&#039;);
		mb_internal_encoding(&#039;UTF-8&#039;);
		mysql_select_db(DATABASE, $dbLink);
		mysql_query(&quot;set names &#039;utf8&#039;&quot;,$dbLink);

				
		if(isset($_POST[&#039;add_country_cost&#039;]))
		{
			$country_name = $_POST[&#039;country_name&#039;];
			$cost_kilowatt = $_POST[&#039;cost_kilowatt&#039;];
			$currency = $_POST[&#039;currency&#039;];
			mysql_query(&quot;SET character_set_client=utf8&quot;, $dbLink);
			mysql_query(&quot;SET character_set_connection=utf8&quot;, $dbLink);
			$sql_query = &quot;insert into country_dollarcost (`id`, `country_name`, `currency`, `cost`) values (&#039;&#039;, &#039;$country_name&#039;, &#039;$currency&#039;, &#039;$cost_kilowatt&#039;)&quot;;
			mysql_query($sql_query, $dbLink);


Can U give suggestions for this 



Thanks &amp; Regards
Rajeshkumar
grajeshkumar.0186@gmail.com</description>
		<content:encoded><![CDATA[<p>Hai Sir,</p>
<p>         The above code is not working, i did according to your instructions but i dont know why&#8230;.?</p>
<p>in phpmyadmin i have selected for my database as well as table utf_unicode_ci.</p>
<p>my code is:</p>
<p>                define(&#8216;HOSTNAME&#8217;, &#8216;localhost&#8217;);<br />
		define(&#8216;USERNAME&#8217;, &#8216;root&#8217;);<br />
		define(&#8216;PASSWORD&#8217;, &#8221;);<br />
		define(&#8216;DATABASE&#8217;, &#8216;bulb_china&#8217;);<br />
		$dbLink = mysql_connect(HOSTNAME, USERNAME, PASSWORD);<br />
		mysql_query(&#8220;SET character_set_results=utf8&#8243;, $dbLink);<br />
		mb_language(&#8216;uni&#8217;);<br />
		mb_internal_encoding(&#8216;UTF-8&#8242;);<br />
		mysql_select_db(DATABASE, $dbLink);<br />
		mysql_query(&#8220;set names &#8216;utf8&#8242;&#8221;,$dbLink);</p>
<p>		if(isset($_POST['add_country_cost']))<br />
		{<br />
			$country_name = $_POST['country_name'];<br />
			$cost_kilowatt = $_POST['cost_kilowatt'];<br />
			$currency = $_POST['currency'];<br />
			mysql_query(&#8220;SET character_set_client=utf8&#8243;, $dbLink);<br />
			mysql_query(&#8220;SET character_set_connection=utf8&#8243;, $dbLink);<br />
			$sql_query = &#8220;insert into country_dollarcost (`id`, `country_name`, `currency`, `cost`) values (&#8221;, &#8216;$country_name&#8217;, &#8216;$currency&#8217;, &#8216;$cost_kilowatt&#8217;)&#8221;;<br />
			mysql_query($sql_query, $dbLink);</p>
<p>Can U give suggestions for this </p>
<p>Thanks &amp; Regards<br />
Rajeshkumar<br />
<a href="mailto:grajeshkumar.0186@gmail.com">grajeshkumar.0186@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-667</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 12 Jan 2010 04:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-667</guid>
		<description>@ Sayed Karim

Did you follow all the steps and observed the result?

If you follow the above steps, i think you can fix it.</description>
		<content:encoded><![CDATA[<p>@ Sayed Karim</p>
<p>Did you follow all the steps and observed the result?</p>
<p>If you follow the above steps, i think you can fix it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sayed Karim</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-666</link>
		<dc:creator>Sayed Karim</dc:creator>
		<pubDate>Mon, 11 Jan 2010 23:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-666</guid>
		<description>Please if you can show me the complete source code of html mysql db and php I will be very thank full to you Mr. Admin</description>
		<content:encoded><![CDATA[<p>Please if you can show me the complete source code of html mysql db and php I will be very thank full to you Mr. Admin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sayed Karim</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-665</link>
		<dc:creator>Sayed Karim</dc:creator>
		<pubDate>Mon, 11 Jan 2010 22:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-665</guid>
		<description>I want to insert my web form arabic input into mysql db by php Please please please help me how can i do this</description>
		<content:encoded><![CDATA[<p>I want to insert my web form arabic input into mysql db by php Please please please help me how can i do this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fadzly</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-662</link>
		<dc:creator>Fadzly</dc:creator>
		<pubDate>Mon, 11 Jan 2010 07:32:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-662</guid>
		<description>I can&#039;t thank you enough. Your article made my life as a fellow developer so mush easier. May you find success and wealth as a result of your generosity with your knowledge.</description>
		<content:encoded><![CDATA[<p>I can&#8217;t thank you enough. Your article made my life as a fellow developer so mush easier. May you find success and wealth as a result of your generosity with your knowledge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-658</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 08 Jan 2010 13:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-658</guid>
		<description>@ Narinder

I think you should use &quot;Step Six: SEARCHING DATA FROM THE DATABASE&quot; for searching.</description>
		<content:encoded><![CDATA[<p>@ Narinder</p>
<p>I think you should use &#8220;Step Six: SEARCHING DATA FROM THE DATABASE&#8221; for searching.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: narinder</title>
		<link>http://www.tanzilo.com/2008/10/13/php-mysql-unicode-solution-to-chinese-russian-or-any-language/comment-page-2/#comment-656</link>
		<dc:creator>narinder</dc:creator>
		<pubDate>Fri, 08 Jan 2010 08:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.tanzilo.com/?p=12#comment-656</guid>
		<description>hello u r the genius in this conversion.
i have one problem i making a dictionary to search words...the words are in punjabi language and its not ur working...

after applying ur code..


plz help 

Regards
Narinder</description>
		<content:encoded><![CDATA[<p>hello u r the genius in this conversion.<br />
i have one problem i making a dictionary to search words&#8230;the words are in punjabi language and its not ur working&#8230;</p>
<p>after applying ur code..</p>
<p>plz help </p>
<p>Regards<br />
Narinder</p>
]]></content:encoded>
	</item>
</channel>
</rss>
