<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Basic Overview of Loops in PHP</title>
	<atom:link href="http://www.ultramegatech.com/blog/2009/09/basic-overview-of-loops-in-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ultramegatech.com/blog/2009/09/basic-overview-of-loops-in-php/</link>
	<description>Web development blog from UltraMega Tech.</description>
	<lastBuildDate>Wed, 10 Mar 2010 19:09:15 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Steve</title>
		<link>http://www.ultramegatech.com/blog/2009/09/basic-overview-of-loops-in-php/comment-page-1/#comment-365</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 26 Sep 2009 18:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=662#comment-365</guid>
		<description>Good point! I added a note about that being available since PHP 5.</description>
		<content:encoded><![CDATA[<p>Good point! I added a note about that being available since PHP 5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kodegeek</title>
		<link>http://www.ultramegatech.com/blog/2009/09/basic-overview-of-loops-in-php/comment-page-1/#comment-362</link>
		<dc:creator>kodegeek</dc:creator>
		<pubDate>Sat, 26 Sep 2009 07:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ultramegatech.com/blog/?p=662#comment-362</guid>
		<description>Foreach loop with reference(loop bellow) available only in php5
// Change each element to lowercase (using reference)
foreach($array as &amp;$value) {
   $value = strtolower($value);
}

Great post!</description>
		<content:encoded><![CDATA[<p>Foreach loop with reference(loop bellow) available only in php5<br />
// Change each element to lowercase (using reference)<br />
foreach($array as &amp;$value) {<br />
   $value = strtolower($value);<br />
}</p>
<p>Great post!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
