<?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>jigniter™ &#187; Uncategorized</title>
	<atom:link href="http://www.jigniter.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jigniter.com</link>
	<description>jQuery &#38; CodeIgniter - Perfect combination for web application</description>
	<lastBuildDate>Wed, 14 Jul 2010 14:15:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Server recommendation for CodeIgniter applications</title>
		<link>http://www.jigniter.com/server-recommendation-for-codeigniter-applications/</link>
		<comments>http://www.jigniter.com/server-recommendation-for-codeigniter-applications/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 19:25:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.jigniter.com/server-recommendation-for-codeigniter-applications/</guid>
		<description><![CDATA[One of the most notorious benefit about using CodeIgniter is that CI applications usually runs without problems on any common Linux server as well as Windows servers supporting PHP. This is a strong benefit versus other PHP frameworks that require special server settings or configuration in order to work. So, lot of server companies may [...]]]></description>
		<wfw:commentRss>http://www.jigniter.com/server-recommendation-for-codeigniter-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeigniter and Uploadify</title>
		<link>http://www.jigniter.com/codeigniter-and-uploadify/</link>
		<comments>http://www.jigniter.com/codeigniter-and-uploadify/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 01:44:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jigniter.com/codeigniter-and-uploadify/</guid>
		<description><![CDATA[Uploadify is a great jQuery library that you can use to support fancy uploads into your application. People may encounter a problem when using Uploadify in CodeIgniter. If you get continuously errors while uploading from Uploadify to a CI controller, you can try to log the error messages to see if the error contains 'application/octet-stream' [...]]]></description>
		<wfw:commentRss>http://www.jigniter.com/codeigniter-and-uploadify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter 1.7.2 released</title>
		<link>http://www.jigniter.com/codeigniter-1-7-2-released/</link>
		<comments>http://www.jigniter.com/codeigniter-1-7-2-released/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 17:15:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jigniter.com/codeigniter-1-7-2-released/</guid>
		<description><![CDATA[The new CodeIgniter 1.7.2 release includes the following general changes: Compatibility for PHP 5.3.0 The Form Helper class has been improved New simple Cart Class has been introduced (we commented something about it in an earlier post) A new function is_php() has been introduced Also, show_error() function allows to send HTTP responses. This new release [...]]]></description>
		<wfw:commentRss>http://www.jigniter.com/codeigniter-1-7-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get a single table field value from database using CodeIgniter</title>
		<link>http://www.jigniter.com/get-a-single-table-field-value-from-database-using-codeigniter/</link>
		<comments>http://www.jigniter.com/get-a-single-table-field-value-from-database-using-codeigniter/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 16:23:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jigniter.com/get-a-single-table-field-value-from-database-using-codeigniter/</guid>
		<description><![CDATA[If you want to get a single value from a database table, then an easy way to achieve that in CodeIgniter could be: $count = $this-&#62;db-&#62;query('SELECT count(*) as count FROM departments')-&#62;row()-&#62;count; Replace department by your table name, and of course, replace count(*) as count by your desired field.]]></description>
		<wfw:commentRss>http://www.jigniter.com/get-a-single-table-field-value-from-database-using-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a super Controller class in CodeIgniter</title>
		<link>http://www.jigniter.com/enhance-your-code-with-super-controller-class-in-codeigniter/</link>
		<comments>http://www.jigniter.com/enhance-your-code-with-super-controller-class-in-codeigniter/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 21:34:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jigniter.com/enhance-your-code-with-super-controller-class-in-codeigniter/</guid>
		<description><![CDATA[CodeIgniter is easy to understand if you know how MVC design pattern works. Just need to define your model, your controller and your views. However, sometimes you need to reuse code in all your site pages and probably you ask yourself “How do I do that?”. Well, here is a simple tip that may help [...]]]></description>
		<wfw:commentRss>http://www.jigniter.com/enhance-your-code-with-super-controller-class-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The importance of a well-documented framework</title>
		<link>http://www.jigniter.com/the-importance-of-a-well-documented-framework/</link>
		<comments>http://www.jigniter.com/the-importance-of-a-well-documented-framework/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 17:31:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[codeigniter]]></category>

		<guid isPermaLink="false">http://www.jigniter.com/the-importance-of-a-well-documented-framework/</guid>
		<description><![CDATA[At the time to choose for a framework, evaluating the documentation is a crucial step in that decision. I remember the time I chose CodeIgniter as framework I researched many of the features compared with other frameworks like Kohana and CakePHP, before taking the final opinion. Later, I found that the documentation as well as [...]]]></description>
		<wfw:commentRss>http://www.jigniter.com/the-importance-of-a-well-documented-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter and AJAX using jQuery</title>
		<link>http://www.jigniter.com/codeigniter-and-ajax-using-jquery/</link>
		<comments>http://www.jigniter.com/codeigniter-and-ajax-using-jquery/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 20:02:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://www.jigniter.com/codeigniter-and-ajax-using-jquery/</guid>
		<description><![CDATA[jQuery has some interesting functions that allows you to add AJAX support easily. If you are new on CodeIgniter, we’d recommend to check out the user guide. If you are new on jQuery, you can check the AJAX documentation. The problem You have a page that need to communicate with a controller function using an [...]]]></description>
		<wfw:commentRss>http://www.jigniter.com/codeigniter-and-ajax-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
