<?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>Bibakis.com</title>
	<atom:link href="http://bibakis.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bibakis.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 04 Aug 2009 09:25:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mainframe CSS framework 0.2</title>
		<link>http://bibakis.com/post/mainframe-css-framework-0-2/</link>
		<comments>http://bibakis.com/post/mainframe-css-framework-0-2/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 09:25:01 +0000</pubDate>
		<dc:creator>Vangelis</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://bibakis.com/?p=43</guid>
		<description><![CDATA[After some real testing on real production websites I&#8217;ve made some fixes and a few additions to the Mainframe CSS framework. What is it ? Read the release post for a bit more information here. 
Changelog:

New: The .hidden class
New: Photoshop PSD &#038; PNG templates for the fixed versions of the layout
New: Documentation &#038; changelog
Updated: Updated [...]]]></description>
			<content:encoded><![CDATA[<p>After some real testing on real production websites I&#8217;ve made some fixes and a few additions to the Mainframe CSS framework. What is it ? Read the release post for a bit more information <a href="http://bibakis.com/post/mainframe-css-framework-is-born/">here</a>. </p>
<p>Changelog:</p>
<ul>
<li>New: The .hidden class</li>
<li>New: <strong>Photoshop PSD &#038; PNG templates</strong> for the fixed versions of the layout</li>
<li>New: Documentation &#038; changelog</li>
<li>Updated: Updated the demo page</li>
<li>Fixed: Some bug fixes with strong tag &#038; cleaners</li>
<li>Fixed: Lists were not showing up correctly (reset bug)</li>
</ul>
<p></p>
<p>Please note that I&#8217;d love to have some <strong>feedback </strong>on this. My gmail is bibakisv@&#8230; Don&#8217;t hesitate to drop me a line with your observations and ideas. Thank you.</p>
<p>Without further delay here is the link to&#8230;</p>
<h3><a href="http://bibakis.com/downloads/Mainframe%20CSS%20framework%200.2.zip">Download Mainframe CSS framework 0.2</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://bibakis.com/post/mainframe-css-framework-0-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking care of the www issue in CodeIgniter</title>
		<link>http://bibakis.com/post/taking-care-of-the-www-issue-in-codeigniter/</link>
		<comments>http://bibakis.com/post/taking-care-of-the-www-issue-in-codeigniter/#comments</comments>
		<pubDate>Fri, 15 May 2009 13:26:31 +0000</pubDate>
		<dc:creator>Vangelis</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://bibakis.com/?p=40</guid>
		<description><![CDATA[One of the problems that came up with the rising dependency on Google and SEO in general is the use of www. On the one hand there is no reason to use www anymore. 100% of modern browsers use the HTTP protocol by default so you don&#8217;t need to specify that you need to access [...]]]></description>
			<content:encoded><![CDATA[<p>One of the problems that came up with the rising dependency on Google and SEO in general is the use of www. On the one hand there is no reason to use www anymore. 100% of modern browsers use the HTTP protocol by default so you don&#8217;t need to specify that you need to access the web part of a domain. It makes your site&#8217;s address larger and harder to remember, more ugly, less likely to fit alongside a logo. Also many suspect that it has an effect on your keyword density, therefore harming your search engine rank just a little bit. On the other hand most of the users still keep the old habit of typing www.site.com in the address bar.<br />
<span id="more-40"></span><br />
I try to redirect to the &#8220;clean&#8221; version of the domain on all my sites. Even if the user uses the www he&#8217;s not harmed at all. In fact most of the times nobody even notices. </p>
<p>One way or another there is a solution to this. Whether you want to get rid of that 90s annoyance or you want to keep your domain a classic www there is an easy way to do this in codeigniter.</p>
<p>First create a hook in <strong>/application/config/hooks.php</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$hook</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_controller_constructor'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
	<span style="color: #0000ff;">'class'</span>    <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Utils_hook'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'function'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'redirect_to_base'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'filename'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'utils_hook.php'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'filepath'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'hooks'</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This tells CodeIgniter to execute the &#8220;redirect_to_base&#8221; method before the controller starts executing it&#8217;s own methods. </p>
<p>Then you need to create the file <strong>/application/hooks/utils_hook.php</strong> and place the following code inside</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">Class</span> Utils_hook <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">function</span> redirect_to_base<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$ci</span> <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span> get_instance<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$ci</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">uri</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">uri_string</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #666666; font-style: italic;">// recreates the URL</span>
		<span style="color: #000088;">$location</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span>base_url<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span>base_url<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #000088;">$uri</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000088;">$active_base_url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'http://'</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'SERVER_NAME'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$active_base_url</span> <span style="color: #339933;">!=</span> base_url<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'SERVER_ADDR'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'127.0.0.1'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			<span style="color: #990000;">Header</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 301 Moved Permanently&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">Header</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;Location: <span style="color: #006699; font-weight: bold;">$location</span>&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>	
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>This way the visitor is always redirected to the URL version you want even if he entered through an old bookmark such as http://www.sitename.com/action/example/</p>
]]></content:encoded>
			<wfw:commentRss>http://bibakis.com/post/taking-care-of-the-www-issue-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mainframe CSS framework is born</title>
		<link>http://bibakis.com/post/mainframe-css-framework-is-born/</link>
		<comments>http://bibakis.com/post/mainframe-css-framework-is-born/#comments</comments>
		<pubDate>Thu, 14 May 2009 15:27:44 +0000</pubDate>
		<dc:creator>Vangelis</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://bibakis.com/?p=38</guid>
		<description><![CDATA[I just completed an early version of a CSS framework which I think can ease a lot of the pain in modern web design. It&#8217;s name is Mainframe. The key features are

CSS reset: all things are reset to what should be the &#8220;defaults&#8221;. This includes fonts, borders, margin, padding and others.
Some Internet Explorer specific CSS [...]]]></description>
			<content:encoded><![CDATA[<p>I just completed an early version of a CSS framework which I think can ease a lot of the pain in modern web design. It&#8217;s name is <strong>Mainframe</strong>. The key features are</p>
<ul>
<li><strong>CSS reset</strong>: all things are reset to what should be the &#8220;defaults&#8221;. This includes fonts, borders, margin, padding and others.</li>
<li>Some <strong>Internet Explorer</strong> specific CSS bugs and annoyances are fixed</li>
<li>Mainframe uses &#8220;<strong>spacers</strong>&#8220;. Clear classes with a bottom margin. Very convenient</li>
<li>Some classes you can use to display errors, warnings and information boxes in a stylish way. I call these &#8220;<strong>AJAX helpers</strong>&#8221; because that&#8217;s what I use them for.</li>
<li>3 <strong>predefined containers</strong> for your content. 12 columns at 960px, 16 columns at 960px and a fluid one at 100% of the page width. PSD files for graphic designers are under development.</li>
<li>The <strong>960 grid system</strong>.</li>
<li>It is <strong>free to use and modify</strong> under the terms of the <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-Share Alike 3.0 Unported License</a>.</li>
</ul>
<p>
&nbsp;</p>
<h3><a href="http://bibakis.com/downloads/Mainframe CSS framework 0.1.zip">Download Mainframe CSS framework 0.1</a></h3>
<p>&nbsp;</p>
<p>Mainframe uses code from <a href="http://developer.yahoo.com/yui/grids/">YUI Grids CSS</a> &#038; the <a href="http://960.gs/">960 Grid System</a>.<br />
<br />
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://bibakis.com/post/mainframe-css-framework-is-born/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>20 iphone Scotland wallpapers pack</title>
		<link>http://bibakis.com/post/20-iphone-scotland-wallpapers-pack/</link>
		<comments>http://bibakis.com/post/20-iphone-scotland-wallpapers-pack/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 11:26:06 +0000</pubDate>
		<dc:creator>Vangelis</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Scotland]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://bibakis.com/?p=33</guid>
		<description><![CDATA[Just got back from a small journey to Scotland. I&#8217;m selecting photos from a huge pile of 1500. Till I got the full wallpapers set ready enjoy a small iphone wallpapers pack. Download here.

]]></description>
			<content:encoded><![CDATA[<p>Just got back from a small journey to Scotland. I&#8217;m selecting photos from a huge pile of 1500. Till I got the full wallpapers set ready enjoy a small iphone wallpapers pack. <a href="http://bibakis.com/wp-content/uploads/2009/04/20-iphone-Scotland-wallpapers-pack.zip">Download here</a>.</p>
<p><a href="http://bibakis.com/wp-content/uploads/2009/04/20-iphone-Scotland-wallpapers-pack.zip"><img src="http://bibakis.com/wp-content/uploads/2009/04/20-iphone-scotland-wallpapers-pack-preview.jpg" alt="" title="20-iphone-scotland-wallpapers-pack-preview" class="aligncenter size-full wp-image-34" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://bibakis.com/post/20-iphone-scotland-wallpapers-pack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Translating multilingual websites the easy way</title>
		<link>http://bibakis.com/post/translating-multilingual-websites-the-easy-way/</link>
		<comments>http://bibakis.com/post/translating-multilingual-websites-the-easy-way/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 09:11:45 +0000</pubDate>
		<dc:creator>Vangelis</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[multilingual]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://bibakis.com/?p=27</guid>
		<description><![CDATA[One of the biggest challenges in web development is making multilingual websites. The easy part is having common functionality across all available versions. The hard part is making sure you don&#8217;t have blank spots. And that means that if you got an English-French website, you shouldn&#8217;t have French words appearing in the English version and [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest challenges in web development is making multilingual websites. The easy part is having common functionality across all available versions. The hard part is making sure you don&#8217;t have blank spots. And that means that if you got an English-French website, you shouldn&#8217;t have French words appearing in the English version and vice versa.<br />
<span id="more-27"></span><br />
The oldest solution I can remember used in PHP is the use of constants. For example instead of writing <em>Home page</em> in your HTML, you write <em>__HOME_PAGE__</em>. Then you got a file for every language with constants that you include in every &#8220;visible&#8221; PHP script. An if block takes care of including the proper constants file for the currently active language. The major problem of this technique is that if something is left untranslated you get ugly __CONSTANTS__ all over the place. There are few things that can make a website look more amateur.</p>
<p>In CodeIgniter there is the language class that takes care of this issue. Instead of using constants you simply do <em>$this->lang->line(&#8217;Home page&#8217;)</em> to get the translation for the words <em>Home page</em>. Then you got files in the &#8220;application/language&#8221; folder with all the translatable items.The problem with this approach is that when something is left untranslated you don&#8217;t know how to find it easily. </p>
<p>I recently took over a multilingual e-shop platform project for <a href="http://nelios.com">Nelios.com</a>. A great <a href="http://twitter.com/grgtvs">friend and colleague</a> there came up with a solution for this which is to extend the language class and add the ability to the line method to add marks before and after a string in case there is no translation available. For example <em>Home page</em> becomes <em>!&#8211; Home page &#8211;!</em>. Although this time we are more organized and flexible since we can for example enable/disable/customize the !&#8211; &#8211;! marks you will notice that practically we are still in the footprints of the ugly constants trick. We still get !&#8211; Ugly &#8211;! stuff in our website in case a translation is forgotten. The worst part is that we still have to scan the entire site by hand and hunt down every little !&#8211; untranslated word &#8211;!.</p>
<div align="center">
<div id="attachment_28" class="wp-caption aligncenter" style="width: 510px"><a href="http://en.wikipedia.org/wiki/Tower_of_Babel"><img src="http://bibakis.com/wp-content/uploads/2009/01/brueghel-tower-of-babel.jpg" alt="Tower of Babel" title="Tower of Babel" width="500" height="376" class="size-full wp-image-28" /></a><p class="wp-caption-text">Tower of Babel</p></div>
</div>
<p>To overcome all of the above problems there are two simple things we can do. The first one is to add semantics to all strings we want to translate. This way <em>Home page</em> is different from <em>home page</em> and we can ease the guy/girl translating our content who won&#8217;t have to figure out when a word starts a sentence or not.</p>
<p>The best part is that we can have all the items we want to translate gathered automatically without the need for spot marks (!&#8211; &#8211;!). To achieve this you need to follow these steps</p>
<ol>
<li>Create a simple two column table in the database called translations (<strong>id</strong> INT, <strong>item</strong> VARCHAR 1024)</li>
<li>When the line method of the language class finds an item that doesn&#8217;t have a translation available make a check to see if this item is stored in the translations table. </li>
<li>If it is not stored then create a line with the exact text you use in your language files. In our case this is $lang['Home page'] = &#8221;;<br /> Insert this line in the translations table.</li>
<li>Create two pages. One called something like &#8216;translations&#8217; and another called &#8216;translations_clear&#8217;. The translations page should run a simple select query to get all the items and just display them in the browser. The translations_clear page should just empty the translations table.</li>
<li>Run a spider against your page to make sure all links are visited. Any decent offline browser should do the trick. Windows users can use Httrack, linux users wget and mac users should get a PC with linux installed (just kidding).</li>
<li>Visit the translations page after the spider is done. You will get a page with all the items inside an array ready to be translated. Simply copy the entire page to your language file and start translating.</li>
</ol>
<p>This way you can have web pages that are translated in one step, right before you fire your FTP client for the final upload. Also when something is added later but is not translated you won&#8217;t get __UGLY__ stuff in your page. </p>
<p>You don&#8217;t have to use CodeIgniter to use this technique. All it takes is that you use a function to fetch the translated items. </p>
]]></content:encoded>
			<wfw:commentRss>http://bibakis.com/post/translating-multilingual-websites-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A free GDM theme for download</title>
		<link>http://bibakis.com/post/a-free-gdm-theme-for-download/</link>
		<comments>http://bibakis.com/post/a-free-gdm-theme-for-download/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 20:26:05 +0000</pubDate>
		<dc:creator>Vangelis</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[gdm]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://bibakis.com/?p=22</guid>
		<description><![CDATA[I just modified a great GDM theme for my Linux box. Without further delay here is the download link.
Download

]]></description>
			<content:encoded><![CDATA[<p>I just modified a great GDM theme for my Linux box. Without further delay here is the download link.<br />
<a href="http://bibakis.com/downloads/eGDM.tar.gz"><strong>Download</strong></a></p>
<p><img src="http://bibakis.com/wp-content/uploads/2009/01/screen1.jpg" alt="" title="screen1" class="alignnone size-full wp-image-24" /></p>
]]></content:encoded>
			<wfw:commentRss>http://bibakis.com/post/a-free-gdm-theme-for-download/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Templates in CodeIgniter</title>
		<link>http://bibakis.com/post/templates-in-codeigniter/</link>
		<comments>http://bibakis.com/post/templates-in-codeigniter/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 02:20:47 +0000</pubDate>
		<dc:creator>Vangelis</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://bibakis.com/?p=3</guid>
		<description><![CDATA[One of the most annoying stuff for CodeIgniter developers is to include a header/footer/etc part in each and every view. CodeIgniter out of the box does not include template support (in the sence of a Joomla template or Wordpress theme). I have created a small library to assist you in using &#8220;templates&#8221; in CodeIgniter.
Download
Download Templates [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most annoying stuff for CodeIgniter developers is to include a header/footer/etc part in each and every view. CodeIgniter out of the box does not include template support (in the sence of a Joomla template or Wordpress theme). I have created a small library to assist you in using &#8220;templates&#8221; in CodeIgniter.</p>
<p><h3>Download</h3>
<p><a href="http://www.bibakis.com/downloads/templates_for_CI_0.1.tar.gz">Download Templates for CodeIgniter 0.1</a>
</p>
<p>
<strong>How to use</strong></p>
<p>1) First copy the file MY_loader.php to your application/libraries folder.<br />
2) Check the example folder to see how a template should look like.<br />
3) Simply do:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">template</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_name'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">view</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'view_name'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>The template loading is done in pretty much the same way as the views loading. However please read the comments inside the MY_loader.php file. It takes one minute and you&#8217;ll get the whole picture about how you can pass $data arrays containing variables.</p>
]]></content:encoded>
			<wfw:commentRss>http://bibakis.com/post/templates-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.659 seconds -->
