<?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>Veera Sundar &#187; PHP</title>
	<atom:link href="http://veerasundar.com/blog/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://veerasundar.com/blog</link>
	<description>Java / Web developer</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:10:46 +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>Easy way for setting up the LAMP stack in Ubuntu Linux command line</title>
		<link>http://veerasundar.com/blog/2011/10/easy-way-for-setting-up-the-lamp-stack-in-ubuntu-linux-command-line/</link>
		<comments>http://veerasundar.com/blog/2011/10/easy-way-for-setting-up-the-lamp-stack-in-ubuntu-linux-command-line/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 14:42:48 +0000</pubDate>
		<dc:creator>Veera</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://veerasundar.com/blog/?p=2687</guid>
		<description><![CDATA[Recently I got hold of an empty Rackspace server in which we have installed Ubuntu 11.04 Natty Narwhal version. My next step was to setup the LAMP stack in that server to run our PHP site. First I tried to install XAMPP for Linux. But unfortunately, it failed because XAMPP only supports 32 bit operating system [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Recently I got hold of an empty Rackspace server in which we have installed Ubuntu 11.04 Natty Narwhal version. My next step was to setup the LAMP stack in that server to run our PHP site.</p>
<p>First I tried to install XAMPP for Linux. But unfortunately, it failed because XAMPP only supports 32 bit operating system and ours was 64. I didn&#8217;t want to spend much time on fixing that issue, so I moved to setup the LAMP stack by other means.</p>
<p>Here&#8217;s what I did (after googling/referring a lot):</p>
<h2>1.Install lamp-server</h2>
<ol>
<li><strong>sudo apt-get install tasksel </strong>[installs the tasksel that helps you to install multiple packages as a single task]</li>
<li><strong>sudo tasksel install lamp-server </strong>[it will install the lamp stack in location <em>/etc/</em>]</li>
<li><em>http://yourdomain.com </em>should work now.</li>
</ol>
<h2>2. Configure PHP Curl module</h2>
<ol>
<li><strong>sudo apt-get install php5-curl </strong>[downloads and installs curl module]</li>
<li><strong>sudo /etc/init.d/apache2 restart</strong> [restarts server for the changes to take effect]</li>
</ol>
<h2>3. Install phpmyadmin</h2>
<ol>
<li><strong>sudo apt-get update </strong>[updates the packages repository. When I first tried to install phpmyadmin without updating, it complained that phpmyadmin isn't found.]</li>
<li><strong>sudo apt-get install phpmyadmin </strong>[will trigger a installation wizard]</li>
<li>Choose <strong>apache2 </strong>for the <strong>server configuration</strong> and choose <strong>no </strong>for <strong>database configuration </strong>(since we have already installed database).</li>
<li><strong>sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf.d </strong>[copies the server configuration so that it is accessible via web]</li>
<li><strong>sudo /etc/init.d/apache2 restart</strong></li>
<li><em>http://yourdomain.com/phpmyadmin</em> should work now.</li>
</ol>
<div>That&#8217;s it. Now our server is ready for serving the traffic. Place your website files under <strong>/var/www/ </strong>which will be served to the world.</div>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://veerasundar.com/blog/2011/11/making-xampp-to-serve-any-directory-outside-htdocs/" title="Making XAMPP to serve any directory outside htdocs ">Making XAMPP to serve any directory outside htdocs </a></li><li><a href="http://veerasundar.com/blog/2009/07/xampp-apache-mysql-php-perl-environment-in-windows/" title="XAMPP &#8211; Apache, MySQL, PHP, Perl environment in Windows ">XAMPP &#8211; Apache, MySQL, PHP, Perl environment in Windows </a></li><li><a href="http://veerasundar.com/blog/2012/01/how-to-create-a-new-image-in-gimp-with-the-size-of-clipboard-image/" title="How to create a new image in GIMP with the size of clipboard image">How to create a new image in GIMP with the size of clipboard image</a></li><li><a href="http://veerasundar.com/blog/2011/06/git-tutorial-getting-started/" title="Git Tutorial &#8211; Getting Started">Git Tutorial &#8211; Getting Started</a></li><li><a href="http://veerasundar.com/blog/2010/11/how-to-setup-java-development-environment-in-ubuntu/" title="How to setup Java development environment in Ubuntu?">How to setup Java development environment in Ubuntu?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://veerasundar.com/blog/2011/10/easy-way-for-setting-up-the-lamp-stack-in-ubuntu-linux-command-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Inserting Adsense within post content in Thesis WordPress</title>
		<link>http://veerasundar.com/blog/2010/11/inserting-adsense-within-post-content-in-thesis-wordpress/</link>
		<comments>http://veerasundar.com/blog/2010/11/inserting-adsense-within-post-content-in-thesis-wordpress/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 11:04:08 +0000</pubDate>
		<dc:creator>Veera</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[codex]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dollor]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1975</guid>
		<description><![CDATA[The usual placement of ads in a blog post is either before the post content or after it. But, if you want to place the ads within your content, then there&#8217;s a way to do it in WordPress. This same technique works in Thesis theme too! Using wordpress filters, we can insert ads (or any [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The usual placement of ads in a blog post is either <em>before</em> the post content or <em>after </em>it. But, if you want to place the ads <em>within</em> your content, then there&#8217;s a way to do it in WordPress. This same technique works in Thesis theme too!</p>
<p>Using <strong>wordpress filters</strong>, we can insert ads (or any content you wish) within the post content. Filters are great way to modify a content. They take one input, apply the modifications and return the output. That&#8217;s what we are going to do now for your post content. We are going to put a place holder for ads in our post content and using filters we are going to replace this placeholder with Adsense.</p>
<p>Follow these steps:</p>
<ol>
<li>Get your Adsense code.</li>
<li>Open <strong>functions.php</strong> or <strong>custom_functions.php</strong> (if you are using Thesis theme) in your wordpress dashboard and add the below code (take a backup before, if you like):
<pre class="brush:php">function insertAdInPost($post_content){
  $ad='[your-Ad]';
  return str_replace("[adsense]", $ad, $post_content);
}
add_filter("the_content", "insertAdInPost");</pre>
</li>
<li>Replace the place holder &#8220;[Your-Ad]&#8221; with your adsense code and save the file.</li>
<li>Edit any post in which you want to add Adsense, and place the markup &#8220;[adsense]&#8221; where you want to insert the ad.</li>
</ol>
<p>That&#8217;s it! Your own smart Adsense, without using any plug-ins stuff!</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://veerasundar.com/blog/2010/03/3-tips-for-effectively-using-adsense-in-wordpress/" title="3 tips for effectively using Adsense in Wordpress">3 tips for effectively using Adsense in Wordpress</a></li><li><a href="http://veerasundar.com/blog/2010/07/infinite-scroll-loading-content-while-scrolling-using-java-and-jquery/" title="Infinite scroll : Loading content while scrolling, using Java and JQuery">Infinite scroll : Loading content while scrolling, using Java and JQuery</a></li><li><a href="http://veerasundar.com/blog/2010/12/javascript-getattribute-method/" title="JavaScript getAttribute method">JavaScript getAttribute method</a></li><li><a href="http://veerasundar.com/blog/2009/07/are-you-following-these-simple-best-practices-in-your-web-design-part-1/" title="Are you following these simple best practices in your web design? [part 1]">Are you following these simple best practices in your web design? [part 1]</a></li><li><a href="http://veerasundar.com/blog/2009/07/downloadable-fonts-in-firefox-35/" title="Downloadable fonts in Firefox 3.5">Downloadable fonts in Firefox 3.5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://veerasundar.com/blog/2010/11/inserting-adsense-within-post-content-in-thesis-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>3 tips for effectively using Adsense in WordPress</title>
		<link>http://veerasundar.com/blog/2010/03/3-tips-for-effectively-using-adsense-in-wordpress/</link>
		<comments>http://veerasundar.com/blog/2010/03/3-tips-for-effectively-using-adsense-in-wordpress/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 13:17:18 +0000</pubDate>
		<dc:creator>Veera</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[monetize]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1445</guid>
		<description><![CDATA[Adsense is one of the easy and effective way to monetize any website. I have been using Adsense ever since I started blogging and it gave me good returns too! In my last post about Adsense, I had summarized some of my observations from using Adsense to monetize this blog. Long back, I shared a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Adsense is one of the easy and effective way to monetize any website. I have been using Adsense ever since I started blogging and it gave me <a title="Google Adsense payment recieved" href="http://veerasundar.com/blog/2009/09/google-adsense-payment-recieved/">good returns</a> too!</p>
<p>In my last post about Adsense, I had summarized some of my observations from using <a title="Adsense and my Blog" href="http://veerasundar.com/blog/2010/01/adsense-and-my-blog/">Adsense to monetize this blog</a>. Long back, I shared a PHP code snippet to <a title="Code snippet for including content based on post length in WordPress" href="http://veerasundar.com/blog/2008/08/code-snippet-for-including-content-based-on-post-length-in-wordpress/">insert Adsense based on the post length</a>. Today In this post, I&#8217;m sharing few more tips on Adsense, which I think might helpful to you. Here we go:</p>
<p class="note">I assume that you are using WordPress and you know how to edit WordPress theme files. If not, you are using these code snippets at your own risk!</p>
<h2>1. Target Adsense content and get better ads</h2>
<p>Your blog might have n-number of things &#8211; comments, sidebars, ads, etc &#8211; apart from the main content. The user comes to your site to read your <em>content,</em> not the n-number of other things. So, it is better to target the main content to show best matching ads, which in turn increase the click through rate. This is called as <strong>Adsense Section Targeting</strong>. It&#8217;s an <a title="What is section targeting and how do I implement it?" href="https://www.google.com/adsense/support/bin/answer.py?answer=23168">approved method</a> from Google to improve the advertisement shown on your website.</p>
<p>For Section targeting, all you need to do is, put the following code snippet in your blog/website.</p>
<pre class="brush:html">&lt;!-- google_ad_section_start --&gt;
Your main content / blog post.
&lt;!-- google_ad_section_end --&gt;</pre>
<p>WordPress users can add the above snippet in their <em>single.php</em> file in appropriate place.</p>
<h2>2. Show Adsense only to the search engine traffic</h2>
<p>If you want to show the advertisements only to the users who are coming from a search engine (Google or Yahoo!), use this snippet. For wordpress users, in your <em>single.php</em> file place this code in appropriate place.</p>
<pre class="brush:php">&lt;?php
$ref = $_SERVER['HTTP_REFERER'];
$SE = array('/search?', 'images.google.', 'web.info.com', 'search.', 'del.icio.us/search', 'soso.com', '/search/', '.yahoo.');
foreach ($SE as $source)
{
        if (strpos($ref,$source)!==false)
        {
                echo 'PLACE ADSENSE HERE';
        }
}
?&gt;</pre>
<h2>3. Add ad only to the older posts</h2>
<p>In case you want to show ads only on the posts which are older than, say 10 days. This way you can hide adsense to the regular readers of your blog and still show advertisement to the people who are looking at your old posts. Well, here&#8217;s the code snippet for that.</p>
<pre class="brush:php">&lt;?php
  global $post;
  $DAYDIFFERENCE = 10;
  $postDate = $post-&gt;post_date;
  $currentDate = date('Y-m-d');
  $diff = abs(strtotime($currentDate) - strtotime($postDate));
  $diff = ceil($diff/86400);
  if($diff &gt; $DAYDIFFERENCE ){
    echo 'PLACE YOUR AD HERE';
  }
?&gt;</pre>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://veerasundar.com/blog/2010/11/inserting-adsense-within-post-content-in-thesis-wordpress/" title="Inserting Adsense within post content in Thesis Wordpress">Inserting Adsense within post content in Thesis Wordpress</a></li><li><a href="http://veerasundar.com/blog/2010/01/adsense-and-my-blog/" title="Adsense and my Blog">Adsense and my Blog</a></li><li><a href="http://veerasundar.com/blog/2011/02/stop-google-from-following-you/" title="Stop Google from following you">Stop Google from following you</a></li><li><a href="http://veerasundar.com/blog/2011/11/making-xampp-to-serve-any-directory-outside-htdocs/" title="Making XAMPP to serve any directory outside htdocs ">Making XAMPP to serve any directory outside htdocs </a></li><li><a href="http://veerasundar.com/blog/2011/11/sorting-an-array-of-custom-objects-in-javascript/" title="Sorting an array of custom objects in JavaScript">Sorting an array of custom objects in JavaScript</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://veerasundar.com/blog/2010/03/3-tips-for-effectively-using-adsense-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Now reading &#8211; CodeIgniter 1.7 Book from Packt Publishing</title>
		<link>http://veerasundar.com/blog/2009/12/now-reading-codeigniter-1-7-book-from-packt-publishing/</link>
		<comments>http://veerasundar.com/blog/2009/12/now-reading-codeigniter-1-7-book-from-packt-publishing/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 13:37:35 +0000</pubDate>
		<dc:creator>Veera</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://veerasundar.com/blog/?p=1110</guid>
		<description><![CDATA[When you have an idea and you want to develop it as an application, you have several choices to make, like the programming language, the open source libraries, the software tools, etc. Along with these choices, it is also important to choose what framework you are going to use. Because frameworks make the development a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When you have an idea and you want to develop it as an application, you have several choices to make, like the programming language, the open source libraries, the software tools, etc. Along with these choices, it is also important to <strong>choose what framework</strong> you are going to use. Because frameworks make the development a lot easier and they bring some best practices, out-of-the box, into our project.</p>
<p>And, if you are a PHP programmer, then you have a tough time when it comes to <a title="Choosing a PHP framework to work with" href="http://veerasundar.com/blog/2009/01/choosing-a-php-framework-to-work-with/">choosing a PHP framework</a>. Because there are n-number of solutions out there. But very few of them stands out, in terms of easy of use, better performance and wide acceptability by programmers. No doubt that <strong><a title="CodeIgniter is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications." href="http://codeigniter.com/">CodeIgniter</a> (CI)</strong> is one such PHP framework and that&#8217;s why I <a title="Chose a PHP framework – Codeigniter" href="http://veerasundar.com/blog/2009/01/chose-a-php-framework-codeigniter/">chose CodeIgniter</a> for my PHP development. It is MVC, light-weight, gives better performance, well documented and have a <a title="CodeIgniter Forums" href="http://codeigniter.com/forums/">great community following</a>. After using CI, I could really appreciate my decision of choosing it.</p>
<div style="float:right;margin:0 10px;"><a href="http://www.packtpub.com/improve-coding-productivity-with-codeigniter-1-7/mid/101209ohlud0?utm_source=veerasundar.com&amp;utm_medium=affiliate&amp;utm_content=blog&amp;utm_campaign=mdb_001802"><img title="CodeIgniter 1.7 Book" src="http://i187.photobucket.com/albums/x201/talktoveera/codeigniter-book.png" alt="CodeIgniter 1.7 Book" width="100" height="123" /></a></div>
<p>So, to get more grip on the CodeIgniter framework, I&#8217;d started reading more materials. Currently, I&#8217;m reading the book <strong><a title="CodeIgniter 1.7 Book" href="http://www.packtpub.com/improve-coding-productivity-with-codeigniter-1-7/mid/101209ohlud0?utm_source=veerasundar.com&amp;utm_medium=affiliate&amp;utm_content=blog&amp;utm_campaign=mdb_001802">CodeIgniter 1.7</a></strong> by <em>Jose Argudo Blanco</em> and <em>David Upton</em>. The book claims to improve the PHP coding productivity with CodeIgniter framework. It explains how to use CodeIgniter framework in a better way. Rather than explaining the syntax and rules of CodeIgniter, this book focuses on getting the big picture and ideas on how to use CodeIgniter. Here&#8217;s the link to the sample chapter if you are interested : <a title="CodeIgniter 1.7 - Sample Chapter" href="http://www.packtpub.com/files/9485-codeigniter-1-7-sample-chapter-3-%20navigating-your-site.pdf">CodeIgniter 1.7 Book &#8211; Sample Chapter &#8211; Navigating Your Website</a></p>
<p>This book has around 300 pages, so I guess I might take a week to read it completely. I&#8217;ll probably write a review of this book once I done with reading it. So, till then enjoy PHP coding with CI!</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://veerasundar.com/blog/2009/10/ignited-php-development-with-codeigniter/" title="Ignited PHP development with CodeIgniter">Ignited PHP development with CodeIgniter</a></li><li><a href="http://veerasundar.com/blog/2009/01/chose-a-php-framework-codeigniter/" title="Chose a PHP framework &#8211; Codeigniter">Chose a PHP framework &#8211; Codeigniter</a></li><li><a href="http://veerasundar.com/blog/2009/12/men-of-steel-the-book-about-the-business-leaders-of-india/" title="Men of Steel &#8211; the book about the Business Leaders of India">Men of Steel &#8211; the book about the Business Leaders of India</a></li><li><a href="http://veerasundar.com/blog/2009/01/php-development-with-codeigniter-getting-started-1/" title="PHP development with CodeIgniter : Getting Started [1]">PHP development with CodeIgniter : Getting Started [1]</a></li><li><a href="http://veerasundar.com/blog/2009/01/choosing-a-php-framework-to-work-with/" title="Choosing a PHP framework to work with">Choosing a PHP framework to work with</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://veerasundar.com/blog/2009/12/now-reading-codeigniter-1-7-book-from-packt-publishing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignited PHP development with CodeIgniter</title>
		<link>http://veerasundar.com/blog/2009/10/ignited-php-development-with-codeigniter/</link>
		<comments>http://veerasundar.com/blog/2009/10/ignited-php-development-with-codeigniter/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 17:29:03 +0000</pubDate>
		<dc:creator>Veera</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://veerasundar.com/blog/?p=871</guid>
		<description><![CDATA[If you were diligently following my blog for some time, I hope you must have read my earlier post about PHP Development with CodeIgniter. I wrote that post a long back, to say exactly, 10 months back. I was planning for a series on CodeIgniter, but had to stop with just one post, due to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you were diligently following my blog for some time, I hope you must have read my earlier post about <a title="PHP development with CodeIgniter : Getting Started [1]" href="http://veerasundar.com/blog/2009/01/php-development-with-codeigniter-getting-started-1/">PHP Development with CodeIgniter</a>. I wrote that post a long back, to say exactly, 10 months back. I was planning for a series on CodeIgniter, but had to stop with just one post, due to my official workload. After that I didn&#8217;t get much time to visit that article, until last week.</p>
<p>When I asked for a <a title="Best PHP framework to work with" href="http://veerasundar.com/blog/2009/01/choosing-a-php-framework-to-work-with/">best PHP framework</a>, I got mixed views on various PHP frameworks, such as <a title="CakePHP - PHP framework" href="http://cakephp.org/">CakePHP</a>, <a title="Zend - PHP Framework" href="http://framework.zend.com/">Zend</a>, <a title="Symfony - PHP framework" href="http://www.symfony-project.org/">Symfony</a>, etc. But, later I <a title="CodeIgniter framework" href="http://veerasundar.com/blog/2009/01/chose-a-php-framework-codeigniter/">chose CodeIgniter</a> mainly because of it&#8217;s very <a title="CodeIgniter documentation" href="http://codeigniter.com/user_guide/">detailed documentation</a>. I was new to PHP then, so the detailed documentation of CodeIgniter helped me to get started quickly with PHP development.</p>
<p>So, enough of CI praising. Just wanted to say that I again started with my PHP side project. Needless to say, I&#8217;m building this app using CodeIgniter framework and I&#8217;m enjoying the every bit of the development. Will be announcing about my project, soon once it&#8217;s in some shape. And, i&#8217;ll be restarting the CodeIgniter post series, too. So, <a href="http://veerasundar.com/blog/feed">keep watching</a> this blog!</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://veerasundar.com/blog/2009/12/now-reading-codeigniter-1-7-book-from-packt-publishing/" title="Now reading &#8211; CodeIgniter 1.7 Book from Packt Publishing">Now reading &#8211; CodeIgniter 1.7 Book from Packt Publishing</a></li><li><a href="http://veerasundar.com/blog/2009/01/chose-a-php-framework-codeigniter/" title="Chose a PHP framework &#8211; Codeigniter">Chose a PHP framework &#8211; Codeigniter</a></li><li><a href="http://veerasundar.com/blog/2009/01/php-development-with-codeigniter-getting-started-1/" title="PHP development with CodeIgniter : Getting Started [1]">PHP development with CodeIgniter : Getting Started [1]</a></li><li><a href="http://veerasundar.com/blog/2009/01/choosing-a-php-framework-to-work-with/" title="Choosing a PHP framework to work with">Choosing a PHP framework to work with</a></li><li><a href="http://veerasundar.com/blog/2011/11/making-xampp-to-serve-any-directory-outside-htdocs/" title="Making XAMPP to serve any directory outside htdocs ">Making XAMPP to serve any directory outside htdocs </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://veerasundar.com/blog/2009/10/ignited-php-development-with-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

