<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>codeigniter Archives - Danny Herran</title>
	<atom:link href="https://dannyherran.com/tag/codeigniter-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://dannyherran.com/tag/codeigniter-2/</link>
	<description>Coding is fun</description>
	<lastBuildDate>Sat, 17 May 2025 22:50:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://dannyherran.com/wp-content/uploads/2025/05/favicon.png</url>
	<title>codeigniter Archives - Danny Herran</title>
	<link>https://dannyherran.com/tag/codeigniter-2/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Seamlessly validate forms and file uploads with CodeIgniter</title>
		<link>https://dannyherran.com/2014/07/validate-forms-file-uploads-with-codeigniter/</link>
					<comments>https://dannyherran.com/2014/07/validate-forms-file-uploads-with-codeigniter/#respond</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Sat, 12 Jul 2014 17:39:57 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=361</guid>

					<description><![CDATA[<p>The Form Validation class is great to validate simple input fields such as textareas, checkboxes, text fields, etc. But what about file inputs? If you have a mix of text and file inputs, your controller can get messy if you try to validate both. Lets take a look at a neat solution that only involves [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2014/07/validate-forms-file-uploads-with-codeigniter/">Seamlessly validate forms and file uploads with CodeIgniter</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2014/07/validate-forms-file-uploads-with-codeigniter/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to load and use SimplePie 1.3+ with CodeIgniter 2.1+</title>
		<link>https://dannyherran.com/2013/06/how-to-load-and-use-simplepie-1-3-with-codeigniter-2-1/</link>
					<comments>https://dannyherran.com/2013/06/how-to-load-and-use-simplepie-1-3-with-codeigniter-2-1/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Wed, 19 Jun 2013 00:10:32 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[parser]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[simplepie]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xml]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=382</guid>

					<description><![CDATA[<p>The famous RSS parser, SimplePie, has changed a few rules in the last couple of versions. The previous methods used to install the library in CodeIgniter are now obsolete. Lets take a look at the new method to get it working in just 5 minutes. 1. Download SimplePie: http://simplepie.org/downloads/ 2. Inside ./application/third_party/ create a new [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2013/06/how-to-load-and-use-simplepie-1-3-with-codeigniter-2-1/">How to load and use SimplePie 1.3+ with CodeIgniter 2.1+</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2013/06/how-to-load-and-use-simplepie-1-3-with-codeigniter-2-1/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Integrating the jQuery Validation plugin with Twitter Bootstrap</title>
		<link>https://dannyherran.com/2012/10/integrating-the-jquery-validation-plugin-with-twitter-bootstrap/</link>
					<comments>https://dannyherran.com/2012/10/integrating-the-jquery-validation-plugin-with-twitter-bootstrap/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Mon, 22 Oct 2012 17:37:18 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[Frontend]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery validation]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[twitter bootstrap]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=354</guid>

					<description><![CDATA[<p>Twitter Bootstrap has some nice styling for error messages in forms. Using jQuery form validation could come handy and its actually pretty easy to integrate. The question is, how do we use the Bootstrap styling along with jQuery Validation plugin? Read on for more. I actually wanted to: a) All the form errors should be [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2012/10/integrating-the-jquery-validation-plugin-with-twitter-bootstrap/">Integrating the jQuery Validation plugin with Twitter Bootstrap</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2012/10/integrating-the-jquery-validation-plugin-with-twitter-bootstrap/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Error Validation Class for CodeIgniter Reactor 2.0</title>
		<link>https://dannyherran.com/2011/05/error-validation-class-for-codeigniter-reactor-2-0/</link>
					<comments>https://dannyherran.com/2011/05/error-validation-class-for-codeigniter-reactor-2-0/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Wed, 04 May 2011 01:34:48 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[handling]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=241</guid>

					<description><![CDATA[<p>CodeIgniter lacks of an error handling class for custom errors. The Form Validation class is very nice for forms, the logs are pretty useful as well, but what happens when we need to handle our own errors?. Currently there is no official solution for this so I decided to take the matter in my own [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2011/05/error-validation-class-for-codeigniter-reactor-2-0/">Error Validation Class for CodeIgniter Reactor 2.0</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2011/05/error-validation-class-for-codeigniter-reactor-2-0/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Exporting your MySQL table data with PHPExcel + CodeIgniter</title>
		<link>https://dannyherran.com/2011/03/exporting-your-mysql-table-data-with-phpexcel-codeigniter/</link>
					<comments>https://dannyherran.com/2011/03/exporting-your-mysql-table-data-with-phpexcel-codeigniter/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Tue, 08 Mar 2011 17:24:58 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=207</guid>

					<description><![CDATA[<p>Most of the time my clients need to download data from their database tables. Exporting to CSV is a pain in the rear for users and it leads to confusion (you know the colon and semicolon stuff). Today, I decided to make a very small controller that is portable and efficient for exporting full MySQL [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2011/03/exporting-your-mysql-table-data-with-phpexcel-codeigniter/">Exporting your MySQL table data with PHPExcel + CodeIgniter</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2011/03/exporting-your-mysql-table-data-with-phpexcel-codeigniter/feed/</wfw:commentRss>
			<slash:comments>33</slash:comments>
		
		
			</item>
		<item>
		<title>Facebook PHP SDK and CodeIgniter for basic user authentication</title>
		<link>https://dannyherran.com/2011/02/facebook-php-sdk-and-codeigniter-for-basic-user-authentication/</link>
					<comments>https://dannyherran.com/2011/02/facebook-php-sdk-and-codeigniter-for-basic-user-authentication/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Thu, 24 Feb 2011 18:16:56 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=185</guid>

					<description><![CDATA[<p>With CodeIgniter 2, plugins are no longer an option. Usually you would just add the Facebook PHP SDK as a plugin and you were good to go, but now, you need to make a little modification to the SDK in order to use Facebook Connect on your CodeIgniter application. Lets start by explaining what is, [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2011/02/facebook-php-sdk-and-codeigniter-for-basic-user-authentication/">Facebook PHP SDK and CodeIgniter for basic user authentication</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2011/02/facebook-php-sdk-and-codeigniter-for-basic-user-authentication/feed/</wfw:commentRss>
			<slash:comments>211</slash:comments>
		
		
			</item>
		<item>
		<title>CodeIgniter 2.0 is out with cool features!</title>
		<link>https://dannyherran.com/2011/02/codeigniter-2-0-is-out-with-cool-features/</link>
					<comments>https://dannyherran.com/2011/02/codeigniter-2-0-is-out-with-cool-features/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Mon, 14 Feb 2011 00:36:58 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=170</guid>

					<description><![CDATA[<p>I know its a bit late, CI 2.0 has been out since January 28th, 2011, but lets talk about it anyway and recapitulate some of the new features of this framework. The new stuff is great, and this time I believe it deserves a second look if you are not much into CI. Let me [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2011/02/codeigniter-2-0-is-out-with-cool-features/">CodeIgniter 2.0 is out with cool features!</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2011/02/codeigniter-2-0-is-out-with-cool-features/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>$_GET parameters on CodeIgniter</title>
		<link>https://dannyherran.com/2010/12/_get-parameters-on-codeigniter/</link>
					<comments>https://dannyherran.com/2010/12/_get-parameters-on-codeigniter/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Mon, 13 Dec 2010 20:43:48 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=121</guid>

					<description><![CDATA[<p>Yeah, it is a much discussed topic in every CI forum. I needed to set up a payment gateway and it was mandatory to receive the gateway response via $_GET, so I decided to do an investigation on the matter and this is what I came up with. Edit (Feb 13th 2011): This feature is [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2010/12/_get-parameters-on-codeigniter/">$_GET parameters on CodeIgniter</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2010/12/_get-parameters-on-codeigniter/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>CodeIgniter 2.0 new FTP class &#8220;download&#8221; method</title>
		<link>https://dannyherran.com/2010/11/codeigniter-2-0-new-ftp-class-download-method/</link>
					<comments>https://dannyherran.com/2010/11/codeigniter-2-0-new-ftp-class-download-method/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Fri, 26 Nov 2010 00:49:47 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=110</guid>

					<description><![CDATA[<p>I needed to download some files from a remote FTP server and the store them in my website. The usual way would be to download all the files to my computer and then upload them to my website. In CodeIgniter 1.7.2 you would have to do this, however, the new CodeIgniter 2.0 has a new [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2010/11/codeigniter-2-0-new-ftp-class-download-method/">CodeIgniter 2.0 new FTP class &#8220;download&#8221; method</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2010/11/codeigniter-2-0-new-ftp-class-download-method/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>HTML Table Class on CodeIgniter 2.0</title>
		<link>https://dannyherran.com/2010/08/html-table-class-on-codeigniter-2-0/</link>
					<comments>https://dannyherran.com/2010/08/html-table-class-on-codeigniter-2-0/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Wed, 01 Sep 2010 01:16:47 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tables]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=84</guid>

					<description><![CDATA[<p>CodeIgniter 2.0 is coming out soon, so lets start studying the changes done to the HTML Table Class in the dev-release. One of the most requested features was the ability to set tag attributes to individual cells. On CI 2.0 this is completely possible, however, since the documentation is not fully updated yet, I decided [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2010/08/html-table-class-on-codeigniter-2-0/">HTML Table Class on CodeIgniter 2.0</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2010/08/html-table-class-on-codeigniter-2-0/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Create thumbnails on the fly with CodeIgniter</title>
		<link>https://dannyherran.com/2010/08/create-thumbnails-on-the-fly-with-codeigniter/</link>
					<comments>https://dannyherran.com/2010/08/create-thumbnails-on-the-fly-with-codeigniter/#comments</comments>
		
		<dc:creator><![CDATA[Danny Herran]]></dc:creator>
		<pubDate>Mon, 09 Aug 2010 20:46:07 +0000</pubDate>
				<category><![CDATA[Backend]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[thumbnails]]></category>
		<guid isPermaLink="false">https://dannyherran.com/?p=28</guid>

					<description><![CDATA[<p>Before explaining the solution, you should know creating thumbnails on the fly is server inefficient, eats a lot of resources and they should be generated as soon as the images are uploaded. However, there are some occasions when we absolutely need to generate thumbs on the fly. In this article we will learn how to [&#8230;]</p>
<p>The post <a href="https://dannyherran.com/2010/08/create-thumbnails-on-the-fly-with-codeigniter/">Create thumbnails on the fly with CodeIgniter</a> appeared first on <a href="https://dannyherran.com">Danny Herran</a>.</p>
]]></description>
		
					<wfw:commentRss>https://dannyherran.com/2010/08/create-thumbnails-on-the-fly-with-codeigniter/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Database Caching 3/55 queries in 0.036 seconds using Disk

Served from: dannyherran.com @ 2026-05-31 08:48:51 by W3 Total Cache
-->