<?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: XLS Download from PHP Class!</title>
	<atom:link href="http://www.sean-barton.co.uk/2009/01/xls-download-from-php-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sean-barton.co.uk/2009/01/xls-download-from-php-class/</link>
	<description>by Sean Barton, a freelance PHP website developer in Crewe, Cheshire</description>
	<lastBuildDate>Tue, 07 Feb 2012 21:17:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Sean</title>
		<link>http://www.sean-barton.co.uk/2009/01/xls-download-from-php-class/comment-page-1/#comment-5814</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Sun, 23 Jan 2011 20:33:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=193#comment-5814</guid>
		<description>Hi Stefi, is the file stored itself in UTF8? Also have you run utf8_encode() over the data before it creates the cells?

thanks
Sean</description>
		<content:encoded><![CDATA[<p>Hi Stefi, is the file stored itself in UTF8? Also have you run utf8_encode() over the data before it creates the cells?</p>
<p>thanks<br />
Sean</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stefi</title>
		<link>http://www.sean-barton.co.uk/2009/01/xls-download-from-php-class/comment-page-1/#comment-5802</link>
		<dc:creator>stefi</dc:creator>
		<pubDate>Sun, 23 Jan 2011 07:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=193#comment-5802</guid>
		<description>Hi Sean, 

thank you very much you for your class!
It is very useful and nice.
 
But I have still problem with encoding in UTF8. String ěščřžýáíé looks ?????ýáíé

Do you some idea please?

Thank you stefi.</description>
		<content:encoded><![CDATA[<p>Hi Sean, </p>
<p>thank you very much you for your class!<br />
It is very useful and nice.</p>
<p>But I have still problem with encoding in UTF8. String ěščřžýáíé looks ?????ýáíé</p>
<p>Do you some idea please?</p>
<p>Thank you stefi.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jbogdani</title>
		<link>http://www.sean-barton.co.uk/2009/01/xls-download-from-php-class/comment-page-1/#comment-2001</link>
		<dc:creator>jbogdani</dc:creator>
		<pubDate>Thu, 04 Mar 2010 07:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=193#comment-2001</guid>
		<description>Hi.
Thank you for your help. I just changed the encoding of my data before packing them and now it works fine!
Here it is the changed function (if anybody needs it):

function cell($value) {
		$value=utf8_decode($value);
		if (is_numeric($value)) {
	... etc ...
		}

		$this-&gt;xls_string .= $value;

		$this-&gt;col++;
	}</description>
		<content:encoded><![CDATA[<p>Hi.<br />
Thank you for your help. I just changed the encoding of my data before packing them and now it works fine!<br />
Here it is the changed function (if anybody needs it):</p>
<p>function cell($value) {<br />
		$value=utf8_decode($value);<br />
		if (is_numeric($value)) {<br />
	&#8230; etc &#8230;<br />
		}</p>
<p>		$this-&gt;xls_string .= $value;</p>
<p>		$this-&gt;col++;<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://www.sean-barton.co.uk/2009/01/xls-download-from-php-class/comment-page-1/#comment-1999</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Wed, 03 Mar 2010 16:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=193#comment-1999</guid>
		<description>Hi there. Glad you are finding it useful. I used to work a lot with UTF8. We used to have to put utf8_decode() on a load of the outputs for various download and output systems. Maybe that will work?

thanks
Sean</description>
		<content:encoded><![CDATA[<p>Hi there. Glad you are finding it useful. I used to work a lot with UTF8. We used to have to put utf8_decode() on a load of the outputs for various download and output systems. Maybe that will work?</p>
<p>thanks<br />
Sean</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jbogdani</title>
		<link>http://www.sean-barton.co.uk/2009/01/xls-download-from-php-class/comment-page-1/#comment-1996</link>
		<dc:creator>jbogdani</dc:creator>
		<pubDate>Wed, 03 Mar 2010 07:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.sean-barton.co.uk/?p=193#comment-1996</guid>
		<description>Hello,
thank you very much for your class witch I found very useful and fast.
But I have an encoding problem. I use your class to export data from a MySQL DB via PHP. Both MySQL and PHP work with UTF-8 char encoding, but when I open the xls file all accentuated characters looks strange: &quot;Ã«n&quot; stands for &quot;ë&quot;, etc. Maybe I have to specify character encoding the xls header? Could you help me in any way?
Thank you very much</description>
		<content:encoded><![CDATA[<p>Hello,<br />
thank you very much for your class witch I found very useful and fast.<br />
But I have an encoding problem. I use your class to export data from a MySQL DB via PHP. Both MySQL and PHP work with UTF-8 char encoding, but when I open the xls file all accentuated characters looks strange: &#8220;Ã«n&#8221; stands for &#8220;ë&#8221;, etc. Maybe I have to specify character encoding the xls header? Could you help me in any way?<br />
Thank you very much</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 8/22 queries in 0.042 seconds using disk
Object Caching 362/368 objects using disk

Served from: www.sean-barton.co.uk @ 2012-02-10 10:29:44 -->
