<?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: How to use special characters in FPDF</title>
	<atom:link href="http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/feed/" rel="self" type="application/rss+xml" />
	<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/</link>
	<description>Design &#38; Development Blog</description>
	<pubDate>Thu, 09 Sep 2010 16:27:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Victor</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-7648</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Sat, 05 Jun 2010 20:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-7648</guid>
		<description>I was wondering how to properly display swedish characters and using "cwhisperer's" idea was perfect. ie.
utf8_decode($html); 

Thanks a million!</description>
		<content:encoded><![CDATA[<p>I was wondering how to properly display swedish characters and using &#8220;cwhisperer&#8217;s&#8221; idea was perfect. ie.<br />
utf8_decode($html); </p>
<p>Thanks a million!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-7455</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 30 Apr 2010 20:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-7455</guid>
		<description>Thanks for your comment, cwhisperer. It helped me out of a maze.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment, cwhisperer. It helped me out of a maze.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-6762</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 27 Feb 2010 02:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-6762</guid>
		<description>You're a star, saved me loosing what little hair I have left :D</description>
		<content:encoded><![CDATA[<p>You&#8217;re a star, saved me loosing what little hair I have left <img src='http://think-robot.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cwhisperer</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-6657</link>
		<dc:creator>cwhisperer</dc:creator>
		<pubDate>Fri, 12 Feb 2010 08:35:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-6657</guid>
		<description>Hi,
I solved the special characters (àéè) with utf8_decode() ...
Regards</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I solved the special characters (àéè) with utf8_decode() &#8230;<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max S.</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-6564</link>
		<dc:creator>Max S.</dc:creator>
		<pubDate>Fri, 29 Jan 2010 21:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-6564</guid>
		<description>You rock!

Thanks for the info! This helped me squash out a but quickly!</description>
		<content:encoded><![CDATA[<p>You rock!</p>
<p>Thanks for the info! This helped me squash out a but quickly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcos Álvares</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-6111</link>
		<dc:creator>Marcos Álvares</dc:creator>
		<pubDate>Thu, 10 Dec 2009 18:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-6111</guid>
		<description>Hello, 
for legacy applications, i wrote a small FPDF wrapper. This wrapper will replace the Cell method to include the iconv automatically.
class PDF extends FPDF {
        // HACK: hack to fix another hack
        function Cell($a, $b, $c, $d, $e, $f) {
          return parent::Cell($a, $b, iconv('UTF-8', 'ISO-8859-1', $c), $d, $e, $f);
        }
}</description>
		<content:encoded><![CDATA[<p>Hello,<br />
for legacy applications, i wrote a small FPDF wrapper. This wrapper will replace the Cell method to include the iconv automatically.<br />
class PDF extends FPDF {<br />
        // HACK: hack to fix another hack<br />
        function Cell($a, $b, $c, $d, $e, $f) {<br />
          return parent::Cell($a, $b, iconv(&#8217;UTF-8&#8242;, &#8216;ISO-8859-1&#8242;, $c), $d, $e, $f);<br />
        }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-6013</link>
		<dc:creator>Colin</dc:creator>
		<pubDate>Wed, 04 Nov 2009 11:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-6013</guid>
		<description>Awesome!  Thanks so much for this!!!!!</description>
		<content:encoded><![CDATA[<p>Awesome!  Thanks so much for this!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Elliott</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-5992</link>
		<dc:creator>Joe Elliott</dc:creator>
		<pubDate>Wed, 21 Oct 2009 04:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-5992</guid>
		<description>Wow.. you saved me a million hours of work... I was looking into other ways to convert the UTF-8 symbols, and there are a few other fpdf libraries out there, but this hack is dead simple and works perfect!  Thanks for putting up this post!</description>
		<content:encoded><![CDATA[<p>Wow.. you saved me a million hours of work&#8230; I was looking into other ways to convert the UTF-8 symbols, and there are a few other fpdf libraries out there, but this hack is dead simple and works perfect!  Thanks for putting up this post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PDF: Поддержка UTF-8 в fpdf / zavackiy.info</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-1958</link>
		<dc:creator>PDF: Поддержка UTF-8 в fpdf / zavackiy.info</dc:creator>
		<pubDate>Sat, 21 Feb 2009 23:52:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-1958</guid>
		<description>[...] Think-Robot » Blog Archive » How to use special characters in FPDF [...]</description>
		<content:encoded><![CDATA[<p>[...] Think-Robot » Blog Archive » How to use special characters in FPDF [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jo</title>
		<link>http://think-robot.com/2008/09/how-to-use-special-characters-in-fpdf/comment-page-1/#comment-12</link>
		<dc:creator>Jo</dc:creator>
		<pubDate>Fri, 12 Dec 2008 09:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.think-robot.com/?p=12#comment-12</guid>
		<description>Hi Wayne,

I've added an example. Basically you do not need to edit the library itself, you just convert the data before passing it on to FPDF.

Jo</description>
		<content:encoded><![CDATA[<p>Hi Wayne,</p>
<p>I&#8217;ve added an example. Basically you do not need to edit the library itself, you just convert the data before passing it on to FPDF.</p>
<p>Jo</p>
]]></content:encoded>
	</item>
</channel>
</rss>
