<?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>FettesPS &#187; chr</title>
	<atom:link href="http://www.fettesps.com/tag/chr/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fettesps.com</link>
	<description>Fettes Programming Solutions</description>
	<lastBuildDate>Sun, 22 Jan 2012 18:21:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP &#8211; Writing An A to Z Loop</title>
		<link>http://www.fettesps.com/php-writing-an-a-to-z-loop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-writing-an-a-to-z-loop</link>
		<comments>http://www.fettesps.com/php-writing-an-a-to-z-loop/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 05:03:48 +0000</pubDate>
		<dc:creator>FettesPS</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[chr]]></category>
		<category><![CDATA[loop]]></category>

		<guid isPermaLink="false">http://www.fettesps.com/blog/?p=15</guid>
		<description><![CDATA[I was recently developing a PHP scraping script to extract the contents of a couple of websites and I wanted to find a quick way to run through a loop for each letter of the alphabet.  I figured since PHP was so versatile there had to be a quick and easy way, so I did [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently developing a PHP scraping script to extract the contents of a couple of websites and I wanted to find a quick way to run through a loop for each letter of the alphabet.  I figured since PHP was so versatile there had to be a quick and easy way, so I did a bit of thinking and came up with this:</p>
<pre class="brush: php; title: ; notranslate">for($alpha = 65; $alpha &amp;lt;= 90; $alpha++) {
      echo chr($alpha);
}</pre>
<p>Simple!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fettesps.com/php-writing-an-a-to-z-loop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

