<?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-jQuery &#187; CodeIgniter</title>
	<atom:link href="http://www.codeigniter-jquery.com/tag/codeigniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codeigniter-jquery.com</link>
	<description>Your Guide to All CodeIgniter &#38; jQuery Resources</description>
	<lastBuildDate>Mon, 18 Jan 2010 23:55:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CodeIgniter and Doctrine from Scratch</title>
		<link>http://www.codeigniter-jquery.com/codeigniter/codeigniter-and-doctrine-from-scratch/</link>
		<comments>http://www.codeigniter-jquery.com/codeigniter/codeigniter-and-doctrine-from-scratch/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 21:27:57 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=79</guid>
		<description><![CDATA[When starting my last project a few months ago, I toyed with the idea of combining CodeIgniter with an ORM to put a spin on things and see how much I enjoyed the extra layer of efficiency. In my quest to find the perfect match, I stumbled across this set of tutorials which demonstrates (very well) [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">W</span>hen starting my last project a few months ago, I toyed with the idea of combining CodeIgniter with an <a title="Wikipedia List of ORM for PHP" href="http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software#PHP">ORM</a> to put a spin on things and see how much I enjoyed the extra layer of efficiency. In my quest to find the perfect match, I stumbled across this set of tutorials which demonstrates (very well) how to use Doctrine with CodeIgniter.</p>
<p>Doctrine is (as they describe it on the <a title="Doctrine Project" href="http://www.doctrine-project.org/">website</a>):</p>
<blockquote><p>Doctrine is a PHP ORM (object relational mapper) for PHP 5.2.3+ that sits on top of a powerful PHP DBAL (database abstraction layer). One of its key features is the ability to optionally write database queries in an OO (object oriented) SQL-dialect called DQL inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains a maximum of flexibility without requiring needless code duplication.</p></blockquote>
<p>The tutorial walks you step-by-step through the process of integrating Doctrine with CodeIgniter and then dives even deeper into topics such as model relationships, hooks, profiling, DQL, templates, and data hydrators. Overall, it&#8217;s a very thorough tutorial.</p>
<ul>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-from-scratch-day-1-install-and-setup">Day 1: Install and Setup</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-and-doctrine-from-scratch-day-2-the-basics">Day 2: The Basics</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-3-user-signup-form">Day 3: User Signup Form</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-4-user-login">Day 4: User Login</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-day-5-database-crud">Day 5: Database CRUD</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-day-6-models-relationships">Day 6: Models with Relationships</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-7-fixtures-forum-list">Day 7: Fixtures &amp; Forum List</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-8-hooks-profiling-dql">Day 8: Hooks, Profiling &amp; DQL</a></li>
<li><a href="http://www.phpandstuff.com/articles/codeigniter-doctrine-scratch-day-9-templates-data-hydrators">Day 9: Templates &amp; Data Hydrators</a></li>
<li>Day 10: &#8230;coming soon</li>
</ul>
<p>FYI &#8211; In the end I decided against using Doctrine in my project, as it added a bit too much weight and required that I mess with yet another layer. But you stand to lose nothing going through these tutorials, you will learn a lot even if you decide against Doctrine in the end.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/codeigniter/codeigniter-and-doctrine-from-scratch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using JSON in CodeIgniter with jQuery</title>
		<link>http://www.codeigniter-jquery.com/codeigniter/using-json-in-codeigniter-with-jquery/</link>
		<comments>http://www.codeigniter-jquery.com/codeigniter/using-json-in-codeigniter-with-jquery/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 20:13:08 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=76</guid>
		<description><![CDATA[I just stumbled across a quick tutorial for those of you looking to integrate jQuery within your CodeIgniter projects. It&#8217;s a simple tutorial, but (as always) great to watch others code to learn new tips and tricks along the way.

]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span> just stumbled across a quick tutorial for those of you looking to integrate jQuery within your CodeIgniter projects. It&#8217;s a simple tutorial, but (as always) great to watch others code to learn new tips and tricks along the way.</p>
<p><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/Fbrn7fY5dGQ&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Fbrn7fY5dGQ&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/codeigniter/using-json-in-codeigniter-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take the Next Step with CodeIgniter</title>
		<link>http://www.codeigniter-jquery.com/codeigniter/take-the-next-step-with-codeigniter/</link>
		<comments>http://www.codeigniter-jquery.com/codeigniter/take-the-next-step-with-codeigniter/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 14:11:31 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=68</guid>
		<description><![CDATA[Based on some initial feedback I received from the Get Started with CodeIgniter post, I thought I&#8217;d put together a quick list of the best step-by-step screencast I&#8217;ve come across. It includes some very concrete examples to help you take the next step with CodeIgniter.

For those of you with a bit more experience, I recommend [...]]]></description>
			<content:encoded><![CDATA[<div><span class="drop">B</span>ased on some initial feedback I received from the <a title="Get Started with CodeIgniter" href="http://www.codeigniter-jquery.com/codeigniter/get-started-with-codeigniter/">Get Started with CodeIgniter</a> post, I thought I&#8217;d put together a quick list of the best step-by-step screencast I&#8217;ve come across. It includes some very concrete examples to help you take the next step with CodeIgniter.</div>
<div></div>
<div>For those of you with a bit more experience, I recommend that you skip ahead to to <a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-5-crud/">Day 5</a> and <a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-6-login/">Day 6</a>. They are great examples of using the MVC approach within CodeIgniter.</div>
<h3>Screencasts</h3>
<ul>
<li><a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-1/">Day 1: Getting Started With the Framework</a></li>
<li><a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-2/">Day 2: Database Selecting Methods</a></li>
<li><a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-3/">Day 3: Sending Emails</a></li>
<li><a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-4-newsletter-signup/">Day 4: Newsletter Signup</a></li>
<li><a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-5-crud/">Day 5: CRUD</a></li>
<li><a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-6-login/">Day 6: Login</a></li>
<li><a title="Net Tuts Screencast for CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-7-pagination/">Day 7: Pagination</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/codeigniter/take-the-next-step-with-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Started with CodeIgniter</title>
		<link>http://www.codeigniter-jquery.com/codeigniter/get-started-with-codeigniter/</link>
		<comments>http://www.codeigniter-jquery.com/codeigniter/get-started-with-codeigniter/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 02:47:29 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=66</guid>
		<description><![CDATA[In the spirit of new beginnings, with the new year and a new blog, I thought I&#8217;d put together a quick list of resources to help those of you who are just diving into CodeIgniter. While the User Guide is always the best place to start, there are many other tutorials for those of you [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">I</span>n the spirit of new beginnings, with the new year and a new blog, I thought I&#8217;d put together a quick list of resources to help those of you who are just diving into CodeIgniter. While the <a title="CodeIgniter User Guide" href="http://codeigniter.com/user_guide/">User Guide</a> is always the best place to start, there are many other tutorials for those of you a little less familiar with PHP-based, <a title="Wikipedia Model View Controller Article" href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller">MVC</a> <a title="Wikipedia Common MVC Frameworks" href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller#Implementations_of_MVC_as_web-based_frameworks">frameworks</a>.</p>
<h3>Tutorials</h3>
<ul>
<li><a title="Net Tuts CodeIgniter" href="http://net.tutsplus.com/tutorials/php/codeigniter-basics/">Everything You Need to Get Started with CodeIgniter</a> &#8211; Net Tuts</li>
<li><a title="IBM" href="http://www.ibm.com/developerworks/web/library/wa-codeigniter/index.html">Getting Started with CodeIgniter</a> &#8211; IBM</li>
<li><a title="Derek Allard" href="http://www.derekallard.com/blog/post/tips-for-getting-started-building-an-application-using-code-igniter/">Tips for Getting Started Building an Application Using CodeIgniter</a> &#8211; Derek Allard</li>
<li><a title="Source Bits" href="http://query7.com/getting-started-with-code-igniter">Getting Started with CodeIgniter</a> &#8211; Source Bits</li>
<li><a title="CodeIgniter Book" href="http://books.komunitasweb.com/codeigniter/getting-started/">Getting Started CodeIgniter Book</a></li>
</ul>
<h3>Screencasts</h3>
<ul>
<li><a title="Hello Worlds" href="http://codeigniter.com/tutorials/watch/intro/">Hello World &#8211; Introduction to CodeIgniter</a> &#8211; CodeIgniter Website</li>
<li><a title="Create a Blog in 20 Minutes" href="http://codeigniter.com/tutorials/watch/blog/">Create a Blog in 20 Minutes</a> &#8211; CodeIgniter</li>
<li><a title="Easy Development with CodeIgniter" href="http://net.tutsplus.com/videos/screencasts/easy-development-with-codeigniter/">Easy Development with CodeIgniter</a> &#8211; Net Tuts</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/codeigniter/get-started-with-codeigniter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CodeIgniter htaccess problems</title>
		<link>http://www.codeigniter-jquery.com/codeigniter/codeigniter-htaccess/</link>
		<comments>http://www.codeigniter-jquery.com/codeigniter/codeigniter-htaccess/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:20:13 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=23</guid>
		<description><![CDATA[One of the most attractive features of CodeIgniter is the clean url structure that can be generated with such ease.  The problem is getting the .htaccess rewrite to work on the first attempt. The first thing most users search for after installing CodeIgniter is a way to remove the index.php file from the url structure. I thought I would take care of that question here.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">O</span>ne of the most attractive features of CodeIgniter is the clean url structure that can be generated with such ease.  The problem is getting the .htaccess rewrite to work on the first attempt. The first thing most users search for after installing CodeIgniter is a way to remove the index.php file from the url structure. I thought I would take care of that question here.</p>
<p>The CodeIgniter User Guide gives this example:</p>
<p><code>RewriteEngine on<br />
RewriteCond $1 !^(index\.php|images|robots\.txt)<br />
RewriteRule ^(.*)$ /index.php/$1 [L]</code></p>
<p>But this has a tendency to fail for most people, who must then resort to the forums.</p>
<p>A more elaborate solution can be found in the <a title="CI Forums" href="http://codeigniter.com/forums/viewthread/85507/">CodeIgniter Forums</a>.</p>
<p><code>&lt;IfModule mod_rewrite.c&gt;<br />
&nbsp;&nbsp;&nbsp;RewriteEngine On<br />
&nbsp;&nbsp;&nbsp;RewriteBase /<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#Removes access to the system folder by users.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#Additionally this will allow you to create a System.php controller,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#previously this would not have been possible.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#'system' can be replaced if you have renamed your system folder.<br />
&nbsp;&nbsp;&nbsp;RewriteCond %{REQUEST_URI} ^system.*<br />
&nbsp;&nbsp;&nbsp;RewriteRule ^(.*)$ /index.php?/$1 [L]<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#Checks to see if the user is attempting to access a valid file,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#such as an image or css document, if this isn't true it sends the<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#request to index.php<br />
&nbsp;&nbsp;&nbsp;RewriteCond %{REQUEST_FILENAME} !-f<br />
&nbsp;&nbsp;&nbsp;RewriteCond %{REQUEST_FILENAME} !-d<br />
&nbsp;&nbsp;&nbsp;RewriteRule ^(.*)$ index.php?/$1 [L]<br />
&lt;/IfModule&gt;<br />
&lt;IfModule !mod_rewrite.c&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# If we don't have mod_rewrite installed, all 404's<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# can be sent to index.php, and everything works as normal.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# Submitted by: ElliotHaughin<br />
&nbsp;&nbsp;&nbsp;ErrorDocument 404 /index.php<br />
&lt;/IfModule&gt;<br />
&nbsp;&nbsp;&nbsp;AddHandler php5-script .php<br />
</code></p>
<p>This should take care of your problem. If not shoot me a comment and I&#8217;ll see what I can do to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/codeigniter/codeigniter-htaccess/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>CodeIgniter User Guide</title>
		<link>http://www.codeigniter-jquery.com/codeigniter/codeigniter-user-guide/</link>
		<comments>http://www.codeigniter-jquery.com/codeigniter/codeigniter-user-guide/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 16:42:52 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[User Guides]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=21</guid>
		<description><![CDATA[As a follow-up to the last post about jQuery&#8217;s Documentation, I thought I would also create a quick list of CodeIgniter User Guides (in various formats).  The best reference, and really the only one I use on a daily basis, is: the Official CodeIgniter User Guide.
I really have nothing negative to say about the user guide [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">A</span>s a follow-up to the last post about jQuery&#8217;s Documentation, I thought I would also create a quick list of CodeIgniter User Guides (in various formats).  The best reference, and really the only one I use on a daily basis, is: the <a title="CodeIgniter User Guide" href="http://codeigniter.com/user_guide/">Official CodeIgniter User Guide</a>.</p>
<p>I really have nothing negative to say about the user guide that comes standard with every download. It is a wonderful reference whether you are just beginning, or a seasoned developer in CodeIgniter.</p>
<h3>PDF &amp; PNG</h3>
<ul>
<li><a href="http://www.scriptdemo.com/ci/codeigniter163.pdf">CodeIgniter 1.6.3 PDF</a></li>
<li><a title="CodeIgniter for Print" href="http://ameya.ro/files/CodeIgniter_User_Guide_1.7.pdf">CodeIgniter 1.7 PDF Printable Copy</a></li>
<li><a title="CI Reference Sheet" href="http://code.google.com/p/codeigniter-1-7-1-quick-reference-cheatsheet/">CodeIgniter Reference Sheet</a></li>
</ul>
<p>Compared to the list I published for jQuery, the list of resources available for CodeIgniter is much smaller. Some might consider that a downside to choosing it as a framework, but I have always looked at it another way. The lack of third-party documentation of CodeIgniter highlights just how great the included user guide really is.  I&#8217;ve never needed another reference (except the occasional cheat sheet) and I don&#8217;t think you will either.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/codeigniter/codeigniter-user-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to CodeIgniter-jQuery</title>
		<link>http://www.codeigniter-jquery.com/messages/welcome-to-codeigniter-jquery-2/</link>
		<comments>http://www.codeigniter-jquery.com/messages/welcome-to-codeigniter-jquery-2/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 15:29:50 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[Messages]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=5</guid>
		<description><![CDATA[Hello and welcome to the most comprehensive collection of CodeIgniter and jQuery resources available (at least this is the goal).  The plan is to create a place where I can quickly bookmark and comment on the latest resources I find while developing and designing with these two wonderful frameworks.
As many of you know, CodeIgniter and [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">H</span>ello and welcome to the most comprehensive collection of CodeIgniter and jQuery resources available (at least this is the goal).  The plan is to create a place where I can quickly bookmark and comment on the latest resources I find while developing and designing with these two wonderful frameworks.</p>
<p>As many of you know, CodeIgniter and jQuery work beautifully together, and both communities have worked tirelessly to provide everyone with helpful tips and tutorials. And while there are already plenty of resources out there, I have a difficult time finding one place where they are all pulled together.</p>
<p>This will soon be that place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/messages/welcome-to-codeigniter-jquery-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

