<?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; PHP-Tips</title>
	<atom:link href="http://mvclogic.com/category/php/php-tips/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>Get multiple arrays values simultaneously in single loop</title>
		<link>http://mvclogic.com/php/get-multiple-arrays-values-simultaneously-in-single-loop/</link>
		<comments>http://mvclogic.com/php/get-multiple-arrays-values-simultaneously-in-single-loop/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 11:38:37 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP-Tips]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=329</guid>
		<description><![CDATA[$a = array&#40;1,2,4&#41;; $b = array&#40;'a','b','c'&#41;; &#160; foreach &#40;array_map&#40;null, $a, $b&#41; as $v&#41; &#123; list&#40;$v1, $v2&#41; = $v; echo $v1 . $v2 ; &#125;]]></description>
		<wfw:commentRss>http://mvclogic.com/php/get-multiple-arrays-values-simultaneously-in-single-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run PHP from HTML &#8211; .html as .php &#8211; Execute PHP in .html</title>
		<link>http://mvclogic.com/php/run-php-from-html-html-as-php-execute-php-in-html/</link>
		<comments>http://mvclogic.com/php/run-php-from-html-html-as-php-execute-php-in-html/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 14:34:43 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP-Tips]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=182</guid>
		<description><![CDATA[How can I execute PHP code on my existing myfile.html page?: When a web page is accessed, the server checks the extension to know how to handle the page. Generally speaking if it sees a .htm or .html file, it &#8230; <a href="http://mvclogic.com/php/run-php-from-html-html-as-php-execute-php-in-html/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/php/run-php-from-html-html-as-php-execute-php-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insert user in Support suite using CodeIginiter</title>
		<link>http://mvclogic.com/php/insert-user-in-support-suite-using-codeiginiter/</link>
		<comments>http://mvclogic.com/php/insert-user-in-support-suite-using-codeiginiter/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 15:21:43 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP-Tips]]></category>
		<category><![CDATA[CodeIginiter]]></category>
		<category><![CDATA[Insert user]]></category>
		<category><![CDATA[Support suite]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=159</guid>
		<description><![CDATA[Paste following code in end of database.php located in config folder $db&#91;'db_support'&#93;&#91;'hostname'&#93; = &#34;localhost&#34;; $db&#91;'db_support'&#93;&#91;'username'&#93; = &#34;dbname&#34;; $db&#91;'db_support'&#93;&#91;'password'&#93; = &#34;password&#34;; $db&#91;'db_support'&#93;&#91;'database'&#93; = &#34;supportsuite_databasename&#34;; $db&#91;'db_support'&#93;&#91;'dbdriver'&#93; = &#34;mysql&#34;; $db&#91;'db_support'&#93;&#91;'dbprefix'&#93; = &#34;&#34;; $db&#91;'db_support'&#93;&#91;'pconnect'&#93; = TRUE; $db&#91;'db_support'&#93;&#91;'db_debug'&#93; = TRUE; $db&#91;'db_support'&#93;&#91;'cache_on'&#93; = FALSE; $db&#91;'db_support'&#93;&#91;'cachedir'&#93; = &#8230; <a href="http://mvclogic.com/php/insert-user-in-support-suite-using-codeiginiter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://mvclogic.com/php/insert-user-in-support-suite-using-codeiginiter/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>
	</channel>
</rss>

