<?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>{MVC} Logic &#187; Newbie</title>
	<atom:link href="http://mvclogic.com/category/php/newbie/feed/" rel="self" type="application/rss+xml" />
	<link>http://mvclogic.com</link>
	<description>MVC Frameworks, PHP Frameworks, CodeIgniter, QT4 - My Experience, Tips ,Tricks, Tweaks, Codes and much more... : MVC{model-view-controller} Logic - Code Hungry</description>
	<lastBuildDate>Sun, 15 Jan 2012 08:55:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SEO based urls : CodeIgniter routes</title>
		<link>http://mvclogic.com/php/seo-based-urls-codeigniter-routes/</link>
		<comments>http://mvclogic.com/php/seo-based-urls-codeigniter-routes/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 11:02:41 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[CodeIgniter routes]]></category>
		<category><![CDATA[SEO based urls]]></category>

		<guid isPermaLink="false">http://mvclogic.com/qt/87/</guid>
		<description><![CDATA[You can use this code for SEO urls &#160; //this section enables you to use some controllers $route&#91;'admin/(:any)'&#93; = &#34;admin/$1&#34;; $route&#91;'contact/(:any)'&#93; = &#34;contact/$1&#34;; $route&#91;'auth/(:any)'&#93; = &#34;auth/$1&#34;; $route&#91;'testimonials/(:any)'&#93; = &#34;testimonials/$1&#34;; &#160; //else everything in url will handle by this pro controller's &#8230; <a href="http://mvclogic.com/php/seo-based-urls-codeigniter-routes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/php/seo-based-urls-codeigniter-routes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Tip in codeigniter to join two tables have same coloum name id</title>
		<link>http://mvclogic.com/php/a-tip-in-codeigniter-to-join-two-tables-have-same-coloum-name-id/</link>
		<comments>http://mvclogic.com/php/a-tip-in-codeigniter-to-join-two-tables-have-same-coloum-name-id/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 16:18:28 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP-Tips]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=140</guid>
		<description><![CDATA[A Tip in codeigniter to join two tables have same coloum name id $this-&#62;ci-&#62;db-&#62;select&#40;&#34;users.*&#34;, FALSE&#41;; $this-&#62;ci-&#62;db-&#62;select&#40;&#34;user_profile.*&#34;, FALSE&#41;; $this-&#62;ci-&#62;db-&#62;from&#40;&#34;users&#34;&#41;; $this-&#62;ci-&#62;db-&#62;join&#40;&#34;user_profile&#34;, &#34;user_profile.user_id = users.id&#34;,'inner'&#41;; $this-&#62;ci-&#62;db-&#62;where&#40;array&#40;'users.id'=&#62;$user_id&#41;, NULL, FALSE&#41;; Users table has id and other table User_profile have id and user_id now users's id &#8230; <a href="http://mvclogic.com/php/a-tip-in-codeigniter-to-join-two-tables-have-same-coloum-name-id/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/php/a-tip-in-codeigniter-to-join-two-tables-have-same-coloum-name-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>true v/s TRUE is actually case insensitive : PHP Tips</title>
		<link>http://mvclogic.com/php/true-vs-true-is-actually-case-insensitive-php-tips/</link>
		<comments>http://mvclogic.com/php/true-vs-true-is-actually-case-insensitive-php-tips/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:23:17 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP-Tips]]></category>
		<category><![CDATA[actually]]></category>
		<category><![CDATA[case insensitive]]></category>
		<category><![CDATA[true v/s TRUE]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=108</guid>
		<description><![CDATA[Fact is : To specify a boolean literal, use the keywords TRUE or FALSE. Both are case-insensitive. We assume in moodle: http://docs.moodle.org/en/Development:Coding_style#Booleans_and_the_null_Value Booleans and the null Value Use lower case for true, false and null. We assume in CodeIgniter: http://codeigniter.com/user_guide/general/styleguide.html#true_false_and_null &#8230; <a href="http://mvclogic.com/php/true-vs-true-is-actually-case-insensitive-php-tips/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/php/true-vs-true-is-actually-case-insensitive-php-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My CodeIgniter .Htaccess</title>
		<link>http://mvclogic.com/php/my-codeigniter-htaccess/</link>
		<comments>http://mvclogic.com/php/my-codeigniter-htaccess/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 04:31:55 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=71</guid>
		<description><![CDATA[This is my .htaccess file RewriteEngine on RewriteCond $1 !^&#40;index\.php&#124;images&#124;user_guide&#124;assets&#124;captcha&#124;robots\.txt&#41; RewriteRule ^&#40;.*&#41;$ index.php/$1 &#91;L&#93; It should be placed in root of the website. Rewrite module of apache should be enabled or it will give you an 500 internal server error. &#8230; <a href="http://mvclogic.com/php/my-codeigniter-htaccess/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/php/my-codeigniter-htaccess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP comment style</title>
		<link>http://mvclogic.com/php/php-comment-style/</link>
		<comments>http://mvclogic.com/php/php-comment-style/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 07:07:44 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://aquireknowledge.com/codemanager/?p=58</guid>
		<description><![CDATA[There are three ways of PHP commenting&#8230; #some single line comment in php //Another way of single line commenting in php &#160; /* some multiline commenting */]]></description>
		<wfw:commentRss>http://mvclogic.com/php/php-comment-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ending tags of php &#8211; leave or not</title>
		<link>http://mvclogic.com/php/ending-of-php-leave-or-not/</link>
		<comments>http://mvclogic.com/php/ending-of-php-leave-or-not/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 07:24:38 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[?>]]></category>
		<category><![CDATA[end tag]]></category>

		<guid isPermaLink="false">http://jals.in/codemanager/?p=60</guid>
		<description><![CDATA[To end the php code we can use &#60;? , In fact it is just optional and we should leave it when we are following OOP. This helps us to remove unwanted whitespaces. This is the core rule of Codeigniter &#8230; <a href="http://mvclogic.com/php/ending-of-php-leave-or-not/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/php/ending-of-php-leave-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

