<?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>Webscriptz.be &#187; programming</title>
	<atom:link href="http://webscriptz.be/tags/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://webscriptz.be</link>
	<description></description>
	<lastBuildDate>Sat, 17 Apr 2010 12:45:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Coding right, tips</title>
		<link>http://webscriptz.be/2009/08/21/coding-right-tips/235</link>
		<comments>http://webscriptz.be/2009/08/21/coding-right-tips/235#comments</comments>
		<pubDate>Fri, 21 Aug 2009 00:21:29 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=235</guid>
		<description><![CDATA[I stumbled upon this when searching for something about code, enjoy! site: freevbcode]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon this when searching for something about code, enjoy!</p>
<p>site: <a href="http://www.freevbcode.com/ShowCode.Asp?ID=2547">freevbcode</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/08/21/coding-right-tips/235/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony php framework</title>
		<link>http://webscriptz.be/2009/07/27/symfony-php-framework/233</link>
		<comments>http://webscriptz.be/2009/07/27/symfony-php-framework/233#comments</comments>
		<pubDate>Mon, 27 Jul 2009 19:15:27 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[Ci]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[webframework]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=233</guid>
		<description><![CDATA[I&#8217;m attached to codeigniter, I know my way around but codeigniter as a a easy to use but now I want something more darring and so this is it, Symfony framework, I think I&#8217;ll be doing that in my vacation that starts in about a week]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m attached to codeigniter, I know my way around but codeigniter as a a easy to use but now I want something more darring and so this is it, Symfony framework, I think I&#8217;ll be doing that in my vacation that starts in about a week <img src='http://webscriptz.be/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/07/27/symfony-php-framework/233/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter the views and .htaccess</title>
		<link>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219</link>
		<comments>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219#comments</comments>
		<pubDate>Sat, 14 Mar 2009 20:23:53 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[Ci]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[views]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=219</guid>
		<description><![CDATA[I must admit that I not a huge fan of Frameworks and Patterns because: A) They make things complicated B) Subject you to some nasty code stuff and rules C) Because templating and Frameworks can be water and fire. Codeigniter on the opposite has some advantage on it side for the templating stuff. This is [...]]]></description>
			<content:encoded><![CDATA[<p>I must admit that I not a huge fan of Frameworks and Patterns because:</p>
<blockquote><p>A) They make things complicated</p>
<p>B) Subject you to some nasty code stuff and rules</p>
<p>C) Because templating and Frameworks can be water and fire.</p></blockquote>
<p>Codeigniter on the opposite has some advantage on it side for the templating stuff. This is really a short explanation for a common problem in other framework.</p>
<p>What to do if you want a nice folder structure or have different template styles, remember this is just a basic thing which happen to work in CI 1.7.</p>
<p><code><br />
function index(){<br />
$this-&gt;load-&gt;view('Themename/news/index);<br />
}</code></p>
<p>Just add some slashes an it works so normally it should work if you would make an adaptation for themes too with a variable in it.</p>
<p>The next thing was kind of hard to find on the web so let me share it. It&#8217;s for when you develop with CI and your not working in the root directory of your server.</p>
<p><code><br />
DirectoryIndex index.php<br />
RewriteEngine on<br />
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA] </code></p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/14/codeigniter-and-views-and-htaccess/219/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MVC again</title>
		<link>http://webscriptz.be/2009/03/09/mvc-again/214</link>
		<comments>http://webscriptz.be/2009/03/09/mvc-again/214#comments</comments>
		<pubDate>Mon, 09 Mar 2009 21:49:06 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[exp]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=214</guid>
		<description><![CDATA[I&#8217;ve grew bored of having to deal with some irritating PHP issues so I&#8217;ve turned my back to those and began testing codeIgniter. It seems strait forward but templating already has me intrigued with problems and mod_rewrite needs a look too I think :p .]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve grew bored of having to deal with some irritating PHP issues so I&#8217;ve turned my back to those and began testing codeIgniter. It seems strait forward but templating already has me intrigued with problems and mod_rewrite needs a look too I think :p .</p>
]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/09/mvc-again/214/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
