<?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>ANIL KUMAR PANIGRAHI &#039;s Blog &#187; CodeIgniter</title>
	<atom:link href="http://www.anil2u.info/category/codeigniter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anil2u.info</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 18:21:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Codeigniter multi language support using google translate API</title>
		<link>http://www.anil2u.info/2010/05/codeigniter-multi-language-support-using-google-translate-api/</link>
		<comments>http://www.anil2u.info/2010/05/codeigniter-multi-language-support-using-google-translate-api/#comments</comments>
		<pubDate>Sat, 29 May 2010 04:43:15 +0000</pubDate>
		<dc:creator>Anil Kumar Panigrahi</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[google translate API]]></category>
		<category><![CDATA[multilanguage in codeigniter using google translate API]]></category>

		<guid isPermaLink="false">http://www.anil2u.info/?p=589</guid>
		<description><![CDATA[Hi friends, This post explains about codeigniter plugin development for multi-language support using google translate API. This is  my own contribution in Codeigniter framework. With using google translate API it is developed. The procedure and how to implement in our application is in below github link. Readme.txt will give complete procedure to implement in the application. [...]]]></description>
		<wfw:commentRss>http://www.anil2u.info/2010/05/codeigniter-multi-language-support-using-google-translate-api/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Create thumbnail images in codeIgniter</title>
		<link>http://www.anil2u.info/2010/01/create-thumbnail-images-in-codeigniter/</link>
		<comments>http://www.anil2u.info/2010/01/create-thumbnail-images-in-codeigniter/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 05:00:54 +0000</pubDate>
		<dc:creator>Anil Kumar Panigrahi</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[thumbnails]]></category>

		<guid isPermaLink="false">http://anil2u.wordpress.com/?p=430</guid>
		<description><![CDATA[In this post i would like to explain about how to create thumbnail images in codeigniter framework. In the following function will give the clear understand about the code. Create Thumbnail Function 1234567891011function _createThumbnail&#40;$fileName&#41; &#123; $config&#91;'image_library'&#93; = 'gd2'; $config&#91;'source_image'&#93; = 'uploads/' . $fileName; $config&#91;'create_thumb'&#93; = TRUE; $config&#91;'maintain_ratio'&#93; = TRUE; $config&#91;'width'&#93; = 75; $config&#91;'height'&#93; = 75; [...]]]></description>
		<wfw:commentRss>http://www.anil2u.info/2010/01/create-thumbnail-images-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to set the pagination in CodeIgniter?</title>
		<link>http://www.anil2u.info/2009/09/how-to-set-the-pagination-in-codeigniter/</link>
		<comments>http://www.anil2u.info/2009/09/how-to-set-the-pagination-in-codeigniter/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 17:33:34 +0000</pubDate>
		<dc:creator>Anil Kumar Panigrahi</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[pagination]]></category>

		<guid isPermaLink="false">http://anil2u.wordpress.com/?p=284</guid>
		<description><![CDATA[In this i would like to explain about how to set the pagination in codeigniter framework. See the code below: to set the pagination in CodeIgniter &#160; In the controller: add the below code 12345678910&#160;$this-&#62;load-&#62;library&#40;'pagination'&#41;; &#160;$config&#91;'total_rows'&#93; = $this-&#62;db-&#62;count_all&#40;'code_image'&#41;; &#160;$config&#91;'per_page'&#93; = '3'; &#160;$config&#91;'full_tag_open'&#93; = '&#60;p&#62;'; &#160;$config&#91;'full_tag_close'&#93; = '&#60;/p&#62;'; &#160;$config&#91;'base_url'&#93; = base_url&#40;&#41;.'upload/list_images/'; &#160;$this-&#62;pagination-&#62;initialize&#40;$config&#41;; &#160;//echo base_url(); &#160;$this-&#62;load-&#62;model&#40;'code_image'&#41;; &#160;$data&#91;'images'&#93; [...]]]></description>
		<wfw:commentRss>http://www.anil2u.info/2009/09/how-to-set-the-pagination-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to configure the baseurl in CodeIgniter</title>
		<link>http://www.anil2u.info/2009/09/how-to-configure-the-baseurl-in-codeigniter/</link>
		<comments>http://www.anil2u.info/2009/09/how-to-configure-the-baseurl-in-codeigniter/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 17:26:36 +0000</pubDate>
		<dc:creator>Anil Kumar Panigrahi</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>

		<guid isPermaLink="false">http://anil2u.wordpress.com/?p=282</guid>
		<description><![CDATA[See the code: In the application\config\ in that folder we have list of files., in that we have to modify the file is config.php $config['base_url'] = &#8220;http://localhost/CodeIgniter/&#8221;; and helpers : appication \ config\ autoload.php file we have to modify. $autoload['libraries'] = array(); to $autoload['libraries'] = array(&#8216;database&#8217;, &#8216;session&#8217;); $autoload['helper'] = array(&#8216;form&#8217;, &#8216;url&#8217;); Hope that it will [...]]]></description>
		<wfw:commentRss>http://www.anil2u.info/2009/09/how-to-configure-the-baseurl-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create database connection using codegniter?</title>
		<link>http://www.anil2u.info/2009/07/how-to-create-database-connection-using-codegniter/</link>
		<comments>http://www.anil2u.info/2009/07/how-to-create-database-connection-using-codegniter/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 07:19:46 +0000</pubDate>
		<dc:creator>Anil Kumar Panigrahi</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://anil2u.wordpress.com/?p=234</guid>
		<description><![CDATA[in the file at : application\config\database.php. we have to configured the database connection. $db['default']['hostname'] = &#8220;&#8221;; // Host Name $db['default']['username'] = &#8220;&#8221;; // User Name $db['default']['password'] = &#8220;&#8221;; // Password $db['default']['database'] = &#8220;&#8221;; // Database Name $db['default']['dbdriver'] = &#8220;&#8221;; // Databse driver. when we configured we can connect to the database. No tags for this [...]]]></description>
		<wfw:commentRss>http://www.anil2u.info/2009/07/how-to-create-database-connection-using-codegniter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to write SEO friendly urls in CodeIgniter</title>
		<link>http://www.anil2u.info/2009/07/how-to-write-seo-friendly-urls-in-codeigniter/</link>
		<comments>http://www.anil2u.info/2009/07/how-to-write-seo-friendly-urls-in-codeigniter/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 07:24:32 +0000</pubDate>
		<dc:creator>Anil Kumar Panigrahi</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://anil2u.wordpress.com/?p=212</guid>
		<description><![CDATA[Hi, In this post i will going to explain about How to write SEO friendly urls in CodeIgniter using .htacess file. create  .htaccess file with the following contents. 123456DirectoryIndex index.php RewriteEngine on RewriteCond $1 !^&#40;index\.php&#124;images&#124;css&#124;js&#124;robots\.txt&#124;favicon\.ico&#41; RewriteCond %&#123;REQUEST_FILENAME&#125; !-f RewriteCond %&#123;REQUEST_FILENAME&#125; !-d RewriteRule ^&#40;.*&#41;$ ./index.php/$1 &#91;L,QSA&#93; Then url will be http://localhost/codeIgniter/[controller-name]/[method-name] / &#160; It will be [...]]]></description>
		<wfw:commentRss>http://www.anil2u.info/2009/07/how-to-write-seo-friendly-urls-in-codeigniter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What is CodeIgniter,how to install in local system?</title>
		<link>http://www.anil2u.info/2009/07/what-is-codeigniterhow-to-install-in-local-system/</link>
		<comments>http://www.anil2u.info/2009/07/what-is-codeigniterhow-to-install-in-local-system/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 06:32:43 +0000</pubDate>
		<dc:creator>Anil Kumar Panigrahi</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>

		<guid isPermaLink="false">http://anil2u.wordpress.com/?p=210</guid>
		<description><![CDATA[CodeIgniter is framework which is follow the MVC architecture. MVC means &#8211; Model , View and Cotroller. Model : It is represents for data structures. It is help to retrieve, insert and update information in our database. View : In generally View is for web page. In CodeIgniter it can be frame like header,footer , [...]]]></description>
		<wfw:commentRss>http://www.anil2u.info/2009/07/what-is-codeigniterhow-to-install-in-local-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

