<?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: Reading CSV File in CodeIgniter</title>
	<atom:link href="http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/</link>
	<description>Web Development and Design Blog</description>
	<lastBuildDate>Sat, 13 Mar 2010 18:50:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: zohaib</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-15229</link>
		<dc:creator>zohaib</dc:creator>
		<pubDate>Tue, 09 Mar 2010 07:56:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-15229</guid>
		<description>nice</description>
		<content:encoded><![CDATA[<p>nice</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Exclusive Tutorials</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-15228</link>
		<dc:creator>Exclusive Tutorials</dc:creator>
		<pubDate>Tue, 09 Mar 2010 07:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-15228</guid>
		<description>thanks for this</description>
		<content:encoded><![CDATA[<p>thanks for this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterXP</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-15227</link>
		<dc:creator>peterXP</dc:creator>
		<pubDate>Tue, 09 Mar 2010 04:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-15227</guid>
		<description>That&#039;s grete tutorial!

But It&#039;s difficult for newbie to store file&amp;foloder in where?
You should point path file to show to newbie.

error say 
&quot;Message: file(./csv/products.csv) [function.file]: failed to open stream: No such file or directory
Filename: libraries/csvreader.php&quot;</description>
		<content:encoded><![CDATA[<p>That&#8217;s grete tutorial!</p>
<p>But It&#8217;s difficult for newbie to store file&amp;foloder in where?<br />
You should point path file to show to newbie.</p>
<p>error say<br />
&#8220;Message: file(./csv/products.csv) [function.file]: failed to open stream: No such file or directory<br />
Filename: libraries/csvreader.php&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fatih</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-13208</link>
		<dc:creator>Fatih</dc:creator>
		<pubDate>Sun, 17 Jan 2010 20:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-13208</guid>
		<description>thank you for the tutorial.
do you know any class, library or sth. to export these CSVs to a pdf file??</description>
		<content:encoded><![CDATA[<p>thank you for the tutorial.<br />
do you know any class, library or sth. to export these CSVs to a pdf file??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Biggs</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-13005</link>
		<dc:creator>Biggs</dc:creator>
		<pubDate>Tue, 12 Jan 2010 00:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-13005</guid>
		<description>Just tried this for my bank statement.csv file (HSBC).
My data is like this:
2010-01-12,A DESCRIPTION OF TRANSACTION,-34.90

First, I got the wiki version of the library which pjturpeau links to above. Then I had to change in the class var $separator from semicolon to comma. Finally the table in the view code above was a bit messed up, but that was fixed by removing the &lt;thead&gt;, &lt;th&gt; and &lt;tbody&gt; tags. 

Perfect! All I have to do now is figure out how to get this data into a database table.

Thanks for this tutorial, very much appreciated.
Biggs</description>
		<content:encoded><![CDATA[<p>Just tried this for my bank statement.csv file (HSBC).<br />
My data is like this:<br />
2010-01-12,A DESCRIPTION OF TRANSACTION,-34.90</p>
<p>First, I got the wiki version of the library which pjturpeau links to above. Then I had to change in the class var $separator from semicolon to comma. Finally the table in the view code above was a bit messed up, but that was fixed by removing the &lt;thead&gt;, &lt;th&gt; and &lt;tbody&gt; tags. </p>
<p>Perfect! All I have to do now is figure out how to get this data into a database table.</p>
<p>Thanks for this tutorial, very much appreciated.<br />
Biggs</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pjturpeau</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-8703</link>
		<dc:creator>pjturpeau</dc:creator>
		<pubDate>Wed, 21 Oct 2009 21:12:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-8703</guid>
		<description>It seems my amateurish code snippet has success here. FYI, I have updated the code to use the more reliable fgetcsv() function. It shall resolve most problems people have encountered here.

Refer to http://codeigniter.com/wiki/CSVReader/

*cheers*</description>
		<content:encoded><![CDATA[<p>It seems my amateurish code snippet has success here. FYI, I have updated the code to use the more reliable fgetcsv() function. It shall resolve most problems people have encountered here.</p>
<p>Refer to <a href="http://codeigniter.com/wiki/CSVReader/" rel="nofollow">http://codeigniter.com/wiki/CSVReader/</a></p>
<p>*cheers*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mandoy</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-8691</link>
		<dc:creator>mandoy</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-8691</guid>
		<description>is this CSV library capable to handling large csv data like 800MB or more ?</description>
		<content:encoded><![CDATA[<p>is this CSV library capable to handling large csv data like 800MB or more ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Osipov</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-8321</link>
		<dc:creator>Alexander Osipov</dc:creator>
		<pubDate>Thu, 08 Oct 2009 15:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-8321</guid>
		<description>Thanks for this library, it very useful for me!)</description>
		<content:encoded><![CDATA[<p>Thanks for this library, it very useful for me!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tahsin</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-6925</link>
		<dc:creator>tahsin</dc:creator>
		<pubDate>Tue, 18 Aug 2009 03:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-6925</guid>
		<description>nice post, but php provides a function named fgetcsv. So, we don&#039;t need to write so much code. See my code for uploading a csv file here on &lt;a href=&quot;http://www.newdailyblog.blogspot.com&quot; rel=&quot;nofollow&quot;&gt;http://www.newdailyblog.blogspot.com&lt;/a&gt;

thanks.

tahsin</description>
		<content:encoded><![CDATA[<p>nice post, but php provides a function named fgetcsv. So, we don&#8217;t need to write so much code. See my code for uploading a csv file here on <a href="http://www.newdailyblog.blogspot.com" rel="nofollow">http://www.newdailyblog.blogspot.com</a></p>
<p>thanks.</p>
<p>tahsin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: atheeq</title>
		<link>http://blog.insicdesigns.com/2009/03/reading-csv-file-in-codeigniter/#comment-6375</link>
		<dc:creator>atheeq</dc:creator>
		<pubDate>Sat, 01 Aug 2009 10:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.insicdesigns.com/?p=694#comment-6375</guid>
		<description>How to export the data to excel sheet. Kindly help me..</description>
		<content:encoded><![CDATA[<p>How to export the data to excel sheet. Kindly help me..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
