<?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>Web Development - Programming - Coding Recipes &#187; Web Development</title>
	<atom:link href="http://codingrecipes.com/tag/web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Aug 2010 21:06:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Comparing 2 blog search engines</title>
		<link>http://codingrecipes.com/comparing-2-blog-search-engines</link>
		<comments>http://codingrecipes.com/comparing-2-blog-search-engines#comments</comments>
		<pubDate>Fri, 15 Aug 2008 13:43:29 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=76</guid>
		<description><![CDATA[Those of you who know me know that one of the client projects I&#8217;m working on for many years is Bloggapedia.
It started as a categorized collection of blogs and then became a blogging community.
From the very beginning, I always bugged everyone involved to let me make a search engine out of it and a few months back they [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/comparing-2-blog-search-engines/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Generating an array of months</title>
		<link>http://codingrecipes.com/generating-an-array-of-months</link>
		<comments>http://codingrecipes.com/generating-an-array-of-months#comments</comments>
		<pubDate>Mon, 14 Jul 2008 22:28:08 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=29</guid>
		<description><![CDATA[Here is a nice way of doing this:

for( $i = 0; $i &#60; 12; $i++ ) {
    $retval[ $i ] =
       date('M', strtotime('Jan +' .$i .' month'));
}

The real power of this is when you put it in a function like this:

function get_months($format) {
   $retval = array();
   [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/generating-an-array-of-months/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
