<?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: Create excel files with php</title>
	<atom:link href="http://www.999tutorials.com/php/create-excel-files-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.999tutorials.com/php/create-excel-files-with-php/</link>
	<description>999Tutorials.com - Your Tutorial Spot</description>
	<lastBuildDate>Fri, 05 Mar 2010 07:35:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jazz</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-5822</link>
		<dc:creator>jazz</dc:creator>
		<pubDate>Wed, 24 Feb 2010 12:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-5822</guid>
		<description>hi

can you explain how to create excel file with format</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>can you explain how to create excel file with format</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-5538</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 08 Feb 2010 20:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-5538</guid>
		<description>Unfortunately not, you have to signup with phpclasses.org, but it&#039;s free.</description>
		<content:encoded><![CDATA[<p>Unfortunately not, you have to signup with phpclasses.org, but it&#8217;s free.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-5533</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 08 Feb 2010 20:04:50 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-5533</guid>
		<description>Not sure if I understand what you try to do.
Do you want to edit an excel file that you created earlier and add more an additional row?
Unfortunately that is not possible with this method, because the class can not open and read existing files.

We will try to get a new improved excel tutorial online soon though that might help you!</description>
		<content:encoded><![CDATA[<p>Not sure if I understand what you try to do.<br />
Do you want to edit an excel file that you created earlier and add more an additional row?<br />
Unfortunately that is not possible with this method, because the class can not open and read existing files.</p>
<p>We will try to get a new improved excel tutorial online soon though that might help you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suji</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-5378</link>
		<dc:creator>suji</dc:creator>
		<pubDate>Tue, 02 Feb 2010 16:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-5378</guid>
		<description>Hi, 
That was a nice tutorial. But I have one question.

How do I add more data to the same excel file. For example say I am executing the file, I get 3 rows of data. Suppose I want to add the fourth one what should I do?

Thanks
Suji</description>
		<content:encoded><![CDATA[<p>Hi,<br />
That was a nice tutorial. But I have one question.</p>
<p>How do I add more data to the same excel file. For example say I am executing the file, I get 3 rows of data. Suppose I want to add the fourth one what should I do?</p>
<p>Thanks<br />
Suji</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: syamsy</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-4444</link>
		<dc:creator>syamsy</dc:creator>
		<pubDate>Sat, 02 Jan 2010 04:04:19 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-4444</guid>
		<description>Are you able to give you a link but www.phpclasses.org, because I could not from the site registration</description>
		<content:encoded><![CDATA[<p>Are you able to give you a link but <a href="http://www.phpclasses.org" rel="nofollow">http://www.phpclasses.org</a>, because I could not from the site registration</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhaneshmane</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-3944</link>
		<dc:creator>dhaneshmane</dc:creator>
		<pubDate>Sun, 20 Dec 2009 03:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-3944</guid>
		<description>Hey , nice technique , but I would like to add that dont use this technique if you want your users to generate excels/any file on the fly and download.

Because if you have lots of users on this page then just imagine how much load server will take. because its contain all file handling code.

Instead of this you can use some simple headers to create excel files on the fly and set it for force download.

heres a sample of headers to create any file

// We&#039;ll be outputting a PDF
header(&#039;Content-type: application/pdf&#039;);
tells browser that coming data is not plain html but pdf

// It will be called downloaded.pdf
header(&#039;Content-Disposition: attachment; filename=&quot;filename.pdf&quot;&#039;);
header(&quot;Content-Type: application/force-download&quot;);

above lines will tell browser for force download with specified file name. so user will get dialog box of save or open.  

C no file handling..</description>
		<content:encoded><![CDATA[<p>Hey , nice technique , but I would like to add that dont use this technique if you want your users to generate excels/any file on the fly and download.</p>
<p>Because if you have lots of users on this page then just imagine how much load server will take. because its contain all file handling code.</p>
<p>Instead of this you can use some simple headers to create excel files on the fly and set it for force download.</p>
<p>heres a sample of headers to create any file</p>
<p>// We&#8217;ll be outputting a PDF<br />
header(&#8216;Content-type: application/pdf&#8217;);<br />
tells browser that coming data is not plain html but pdf</p>
<p>// It will be called downloaded.pdf<br />
header(&#8216;Content-Disposition: attachment; filename=&#8221;filename.pdf&#8221;&#8216;);<br />
header(&#8220;Content-Type: application/force-download&#8221;);</p>
<p>above lines will tell browser for force download with specified file name. so user will get dialog box of save or open.  </p>
<p>C no file handling..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ganesh</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-3104</link>
		<dc:creator>ganesh</dc:creator>
		<pubDate>Thu, 19 Nov 2009 10:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-3104</guid>
		<description>Hey Guys,
I m getting same kind of output as &quot;nagarjuna&quot;
I m also using linux system
Try to figure it out if possible
Here&#039;s what i got

a:3:{i:0;a:5:{s:12:&quot;Sales Person&quot;;s:11:&quot;Sam Jackson&quot;;s:2:&quot;Q1&quot;;s:5:&quot;$3255&quot;;s:2:&quot;Q2&quot;;s:5:&quot;$3167&quot;;s:2:&quot;Q3&quot;;i:3245;s:2:&quot;Q4&quot;;i:3943;}...</description>
		<content:encoded><![CDATA[<p>Hey Guys,<br />
I m getting same kind of output as &#8220;nagarjuna&#8221;<br />
I m also using linux system<br />
Try to figure it out if possible<br />
Here&#8217;s what i got</p>
<p>a:3:{i:0;a:5:{s:12:&#8221;Sales Person&#8221;;s:11:&#8221;Sam Jackson&#8221;;s:2:&#8221;Q1&#8243;;s:5:&#8221;$3255&#8243;;s:2:&#8221;Q2&#8243;;s:5:&#8221;$3167&#8243;;s:2:&#8221;Q3&#8243;;i:3245;s:2:&#8221;Q4&#8243;;i:3943;}&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ranu</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-2727</link>
		<dc:creator>ranu</dc:creator>
		<pubDate>Tue, 27 Oct 2009 01:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-2727</guid>
		<description>thank for your tutorial and link</description>
		<content:encoded><![CDATA[<p>thank for your tutorial and link</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iulia</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-2411</link>
		<dc:creator>Iulia</dc:creator>
		<pubDate>Fri, 09 Oct 2009 08:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-2411</guid>
		<description>Thanks guys for your help.


Cheers</description>
		<content:encoded><![CDATA[<p>Thanks guys for your help.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MEM</title>
		<link>http://www.999tutorials.com/php/create-excel-files-with-php/comment-page-1/#comment-2403</link>
		<dc:creator>MEM</dc:creator>
		<pubDate>Fri, 09 Oct 2009 00:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://new.999tutorials.com/?p=40#comment-2403</guid>
		<description>Sorry for the first question, I didn&#039;t notice you were using a class... Let&#039;s forget about that first question. :)

Regards,
MEM</description>
		<content:encoded><![CDATA[<p>Sorry for the first question, I didn&#8217;t notice you were using a class&#8230; Let&#8217;s forget about that first question. <img src='http://www.999tutorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Regards,<br />
MEM</p>
]]></content:encoded>
	</item>
</channel>
</rss>
