<?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>Comments on: HTML_AJAX 0.2.1 Released</title>
	<atom:link href="http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/</link>
	<description>The weblog of Joshua Eichorn, AJAX, PHP and Open Source</description>
	<pubDate>Thu, 04 Dec 2008 04:31:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: boo</title>
		<link>http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-5134</link>
		<dc:creator>boo</dc:creator>
		<pubDate>Tue, 25 Oct 2005 20:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-5134</guid>
		<description>Ooops:
you'll want the charset, but probably not the Content-Type text/plain.
change it to fit your needs: eg. text/html, etc.

/boo</description>
		<content:encoded><![CDATA[<p>Ooops:<br />
you&#8217;ll want the charset, but probably not the Content-Type text/plain.<br />
change it to fit your needs: eg. text/html, etc.</p>
<p>/boo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boo</title>
		<link>http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-5133</link>
		<dc:creator>boo</dc:creator>
		<pubDate>Tue, 25 Oct 2005 19:58:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-5133</guid>
		<description>Hey ilcomi

I just spent LOTS of time trying to get something similar to work.
(binary strings in my case)

this is my solution, which works around installing the mbstring functions:

header("Content-Type: text/plain; charset=utf8");
require_once('I18N_UnicodeString/I18N_UnicodeString.php');
   //get it from: http://pear.php.net/package/I18N_UnicodeString
$u = new I18N_UnicodeString($your_str, 'HTML');
$output = $u-&#62;toUtf8String();

try, modify and have fun:)
hope this helps

/boo</description>
		<content:encoded><![CDATA[<p>Hey ilcomi</p>
<p>I just spent LOTS of time trying to get something similar to work.<br />
(binary strings in my case)</p>
<p>this is my solution, which works around installing the mbstring functions:</p>
<p>header(&#8221;Content-Type: text/plain; charset=utf8&#8243;);<br />
require_once(&#8217;I18N_UnicodeString/I18N_UnicodeString.php&#8217;);<br />
   //get it from: <a href="http://pear.php.net/package/I18N_UnicodeString" rel="nofollow">http://pear.php.net/package/I18N_UnicodeString</a><br />
$u = new I18N_UnicodeString($your_str, &#8216;HTML&#8217;);<br />
$output = $u-&gt;toUtf8String();</p>
<p>try, modify and have fun:)<br />
hope this helps</p>
<p>/boo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Eichorn</title>
		<link>http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-4985</link>
		<dc:creator>Joshua Eichorn</dc:creator>
		<pubDate>Sun, 02 Oct 2005 18:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-4985</guid>
		<description>I would try things with the mbstring extension turned on.  I think someone has a patch that uses iconv instead but its not in svn yet.</description>
		<content:encoded><![CDATA[<p>I would try things with the mbstring extension turned on.  I think someone has a patch that uses iconv instead but its not in svn yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ilcomi</title>
		<link>http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-4978</link>
		<dc:creator>ilcomi</dc:creator>
		<pubDate>Sun, 02 Oct 2005 11:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-4978</guid>
		<description>For my question before maybe I must enable in my php the mbstring extension?

thanks</description>
		<content:encoded><![CDATA[<p>For my question before maybe I must enable in my php the mbstring extension?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ilcomi</title>
		<link>http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-4977</link>
		<dc:creator>ilcomi</dc:creator>
		<pubDate>Sun, 02 Oct 2005 11:19:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.joshuaeichorn.com/archives/2005/09/30/html_ajax-021-released/#comment-4977</guid>
		<description>I try to use HTML_AJAX 0.2.1 but i can return string, object or array contains character like "à è ì ò ù".

For example:
In your example file "proxy_usage_server.php" when i change the string 
"I'm a async call"
in
"I'm a async call and this is a à"
the result is:
"Fatal error: Call to undefined function mb_convert_encoding() in /usr/local/lib/php/HTML/AJAX/JSON.php on line 116"

I think there is an error for encoding string, is correct?

Thanks
ilcomi</description>
		<content:encoded><![CDATA[<p>I try to use HTML_AJAX 0.2.1 but i can return string, object or array contains character like &#8220;à è ì ò ù&#8221;.</p>
<p>For example:<br />
In your example file &#8220;proxy_usage_server.php&#8221; when i change the string<br />
&#8220;I&#8217;m a async call&#8221;<br />
in<br />
&#8220;I&#8217;m a async call and this is a à&#8221;<br />
the result is:<br />
&#8220;Fatal error: Call to undefined function mb_convert_encoding() in /usr/local/lib/php/HTML/AJAX/JSON.php on line 116&#8243;</p>
<p>I think there is an error for encoding string, is correct?</p>
<p>Thanks<br />
ilcomi</p>
]]></content:encoded>
	</item>
</channel>
</rss>
