<?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</title>
	<atom:link href="http://www.codeigniter-jquery.com/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>Get Started with jQuery</title>
		<link>http://www.codeigniter-jquery.com/jquery/get-started-with-jquery/</link>
		<comments>http://www.codeigniter-jquery.com/jquery/get-started-with-jquery/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 23:49:27 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=83</guid>
		<description><![CDATA[Unlike CodeIgniter, jQuery has no limit to the number of tutorials available to help you get started. Rather than making a comprehensive list, I&#8217;ve decided to make a quick list of what I consider to be the most valuable resources for getting your hands dirty with jQuery.
John Resig

 How jQuery Works
jQuery Online Movie Tutorial

Karl Swedberg

Working [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">U</span>nlike CodeIgniter, jQuery has no limit to the number of tutorials available to help you get started. Rather than making a comprehensive list, I&#8217;ve decided to make a quick list of what I consider to be the most valuable resources for getting your hands dirty with jQuery.</p>
<h3>John Resig</h3>
<ul>
<li> <a title="How jQuery Works" href="http://docs.jquery.com/Tutorials:How_jQuery_Works">How jQuery Works</a></li>
<li><a href="http://15daysofjquery.com/jquery-online-movie-tutorial-by-john-resig/29/">jQuery Online Movie Tutorial</a></li>
</ul>
<h3>Karl Swedberg</h3>
<ul>
<li><a href="http://www.learningjquery.com/2008/03/working-with-events-part-1">Working with Events, part 1</a></li>
<li><a href="http://www.learningjquery.com/2007/09/animated-scrolling-with-jquery-12">Animated Scrolling with jQuery 1.2</a></li>
<li><a href="http://www.learningjquery.com/2007/06/automatic-page-contents">Automatic Page Contents</a></li>
<li><a href="http://www.learningjquery.com/2007/02/more-showing-more-hiding">More Showing, More Hiding</a></li>
</ul>
<h3>Building Your First jQuery Plug-ins</h3>
<ul>
<li><a href="http://www.learningjquery.com/2007/10/a-plugin-development-pattern">A Plugin Development Pattern</a></li>
<li><a href="http://snook.ca/archives/javascript/jquery_plugin/">Developing a jQuery Plugin</a></li>
<li><a href="http://blog.jeremymartin.name/2008/02/building-your-first-jquery-plugin-that.html">Building Your First jQuery Plugin</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/jquery/get-started-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>What&#8217;s new in jQuery 1.4?</title>
		<link>http://www.codeigniter-jquery.com/jquery/whats-new-in-jquery-1-4-2/</link>
		<comments>http://www.codeigniter-jquery.com/jquery/whats-new-in-jquery-1-4-2/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 17:30:41 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=71</guid>
		<description><![CDATA[With all of the excitement surrounding the latest release of jQuery, I thought I would highlight five new features that I am most excited about. Besides the restructuring of the core and the reduction of it&#8217;s size (no longer using YUI compressor, but the Google Closure Compiler instead&#8230;a 13% decrease in size!) and complexity,  there [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">W</span>ith all of the <a title="14 Days of jQuery" href="http://jquery14.com/">excitement</a> surrounding the latest release of jQuery, I thought I would highlight five new features that I am most excited about. Besides the restructuring of the core and the reduction of it&#8217;s size (no longer using <a title="YUI Complier" href="http://yuilibrary.com/downloads/">YUI compressor</a>, but the <a title="Google Closure Compiler " href="http://code.google.com/closure/compiler/">Google Closure Compiler</a> instead&#8230;a <a title="Compare YUI Compiler and Google Compiler" href="http://www.slideshare.net/lifesinger/closure-compiler-vs-yuicompressor">13%</a> decrease in size!) and complexity,  there are several new features that make this the most exciting release so far.</p>
<h3>5 Great new Features in jQuery 1.4</h3>
<ol>
<li><strong>All Events can now be Live Events (</strong><a title="New Live Documentation" href="http://api.jquery.com/live/"><strong>.live</strong></a><strong>) </strong>- The <a title="Event Bubbling" href="http://www.quirksmode.org/js/events_order.html">magic</a> that is the Live Event no longer has the restrictions the original release put upon it (except in the case of focus and blur, which should be replaced with focusin and focusout).</li>
<li><strong>We can now unwrap as well as wrap (</strong><a title="unwrap" href="http://api.jquery.com/unwrap/"><strong>unwrap()</strong></a><strong>) </strong>- This always felt like a given&#8230;and it&#8217;s great to finally have it.</li>
<li><strong>Clean and easy attributes when creating elements (<a title="Easy Attr" href="http://api.jquery.com/jQuery/#jQuery2">documentation</a>) </strong>- Rather than creating a messy,endless string attributes, we can now combine them all into a clean new form.</li>
<li><strong>New </strong><a title="nextUntil Documentation" href="http://api.jquery.com/nextUntil/"><strong>nextUntil</strong></a><strong>, </strong><a title="prevUntil Documentation" href="http://api.jquery.com/prevUntil/"><strong>prevUntil</strong></a><strong> and </strong><a title="parentsUntil Docs" href="http://api.jquery.com/parentsUntil/"><strong>parentsUntil</strong></a><strong> methods </strong>- Each of these methods traverses the DOM in the desired direction until the passed selector is satisfied&#8230;this is a great addition for form validation.</li>
<li><strong>New <a title="Detach Method" href="http://api.jquery.com/detach/">.detach()</a> method allows element removal with deleting data </strong>- This is great for complex application state changes in which you&#8217;d like to hold on to removed elements for later, rather than recreating them from scratch (the data saved includes information attached via .data() method as well).</li>
</ol>
<p>For a more intense/in-depth overview of the new features, checkout <a title="Day 1 of 14 Days of jQuery" href="http://jquery14.com/day-01">Day 1</a> of the <a title="14 Days of jQuery" href="http://jquery14.com/">14 Days of jQuery </a>website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/jquery/whats-new-in-jquery-1-4-2/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>jQuery Documentation</title>
		<link>http://www.codeigniter-jquery.com/jquery/jquery-user-guide/</link>
		<comments>http://www.codeigniter-jquery.com/jquery/jquery-user-guide/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 16:23:21 +0000</pubDate>
		<dc:creator>ci_jquery</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[User Guides]]></category>

		<guid isPermaLink="false">http://www.codeigniter-jquery.com/?p=9</guid>
		<description><![CDATA[Let&#8217;s get started by linking to the best resource that the main jQuery web site has to offer: the Official jQuery Documentation.
If you already use jQuery in your projects, you probably visit this on a daily basis (I have dedicated a bookmark to it in Safari). This will help you find examples of everything the [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">L</span>et&#8217;s get started by linking to the best resource that the main jQuery web site has to offer: the <a title="jQuery Documentation" href="http://docs.jquery.com/Main_Page">Official jQuery Documentation</a>.</p>
<p>If you already use jQuery in your projects, you probably visit this on a daily basis (I have dedicated a bookmark to it in Safari). This will help you find examples of everything the latest release has to offer.</p>
<p>There is, of course, one down side to their official documentation&#8230;it&#8217;s a bit sloppy and can be a little slow from time-to-time. In an attempt to make the documentation a bit more accessible many sites, pdf, and iphone apps have been published to take the place of the official doc.</p>
<p>Here&#8217;s a comprehensive list of all the community has to offer:</p>
<h3>PDF &amp; PNG</h3>
<ul>
<li><a title="jQuery API Documentation" href="http://www.bennadel.com/resources/uploads/jquery_documentation.pdf">jQuery API Documentation</a></li>
<li><a title="jQuery Cheat Sheet" href="http://www.box.net/index.php?rm=box_download_shared_file&amp;file_id=f_335981622&amp;shared_name=as4xkezd6a">jQuery Cheat Sheet</a></li>
<li><a title="jQuery Cheat Sheet Background" href="http://www.techdreams.org/wp-content/uploads/2009/06/jquery12-cheat-sheet-download.png">jQuery Cheat Sheet Background</a></li>
</ul>
<h3>Sites</h3>
<ul>
<li><a title="jQuery API Documentation App" href="http://remysharp.com/jquery-api/">jQuery API</a> (via <a title="Remy Sharp" href="http://remysharp.com/">Remy Sharp</a>)</li>
<li><a title="Visual jQUery" href="http://remysharp.com/visual-jquery/">Visual jQuery</a> (via <a title="Remy Sharp" href="http://remysharp.com/">Remy Sharp</a>)</li>
<li><a title="Adobe Air App" href="http://remysharp.com/downloads/jquery-api-browser.air.zip">jQuery Adobe Air App</a> (via <a title="Remy Sharp" href="http://remysharp.com/">Remy Sharp</a>)</li>
</ul>
<h3>iPhone</h3>
<ul>
<li><a title="iPhone jQuery Reference" href="http://www.mrspeaker.net/dev/jq/ref/#home">iPhone Friendly Reference for jQuery 1.4</a></li>
<li><a title="jQuery iPhone App Cheat Sheet" href="http://itunes.apple.com/us/app/jquery-cheat-sheet/id302090867?mt=8">jQuery Cheat Sheet App</a></li>
<li><a title="jQuery Cookbook App" href="http://itunes.apple.com/us/app/jquery-cookbook/id346187300?mt=8">jQuery Cookbook App</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codeigniter-jquery.com/jquery/jquery-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>

