<?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>PHPDone &#187; Loops</title>
	<atom:link href="http://www.phpdone.com/blog/tag/loops/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpdone.com/blog</link>
	<description>Teach Yourself PHP</description>
	<lastBuildDate>Thu, 08 Apr 2010 09:10:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Loops &#8211; Foreach Statement</title>
		<link>http://www.phpdone.com/blog/2009/11/loops-foreach-statement/</link>
		<comments>http://www.phpdone.com/blog/2009/11/loops-foreach-statement/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 11:56:34 +0000</pubDate>
		<dc:creator>Dr. Perl</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[Loops]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.phpdone.com/blog/?p=61</guid>
		<description><![CDATA[Simply put, the foreach statement lets you loop through the elements in an array. Here video shows you how to apply this loop to make a basic times table application!

]]></description>
			<content:encoded><![CDATA[<p><span>Simply put, the foreach statement lets you loop through the elements in an array. Here video shows you how to apply this loop to make a basic times table application!</span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/rZKQleHFvWo&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/rZKQleHFvWo&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdone.com/blog/2009/11/loops-foreach-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loops &#8211; For Statement</title>
		<link>http://www.phpdone.com/blog/2009/11/loops-for-statement/</link>
		<comments>http://www.phpdone.com/blog/2009/11/loops-for-statement/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 11:55:14 +0000</pubDate>
		<dc:creator>Dr. Perl</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[Loops]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.phpdone.com/blog/?p=59</guid>
		<description><![CDATA[The For statement allows you to loop a block of code a specific number of times. The syntax is a bit trickier, but in time you&#8217;ll find it&#8217;s a simple, effective loop.

]]></description>
			<content:encoded><![CDATA[<p><span>The For statement allows you to loop a block of code a specific number of times. The syntax is a bit trickier, but in time you&#8217;ll find it&#8217;s a simple, effective loop.</span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/wQ3rKq9HuBw&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/wQ3rKq9HuBw&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdone.com/blog/2009/11/loops-for-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loops &#8211; Do While Statement</title>
		<link>http://www.phpdone.com/blog/2009/11/loops-do-while-statement/</link>
		<comments>http://www.phpdone.com/blog/2009/11/loops-do-while-statement/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 11:53:53 +0000</pubDate>
		<dc:creator>Dr. Perl</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[Loops]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.phpdone.com/blog/?p=57</guid>
		<description><![CDATA[A slight variation to the While statement, where the condition is checked at the end of the loop instead of at the start. I&#8217;ve also included an IF statement inside the loop block. 

]]></description>
			<content:encoded><![CDATA[<p><span>A slight variation to the While statement, where the condition is checked at the end of the loop instead of at the start. I&#8217;ve also included an IF statement inside the loop block. </span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/dosXYWYvMCk&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/dosXYWYvMCk&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdone.com/blog/2009/11/loops-do-while-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loops &#8211; While Statement</title>
		<link>http://www.phpdone.com/blog/2009/11/loops-while-statement/</link>
		<comments>http://www.phpdone.com/blog/2009/11/loops-while-statement/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 11:52:24 +0000</pubDate>
		<dc:creator>Dr. Perl</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[Loops]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.phpdone.com/blog/?p=55</guid>
		<description><![CDATA[The While statement acts as a loop, checking a condition at the start and executing a following block of code if that condition is met. 

]]></description>
			<content:encoded><![CDATA[<p><span>The While statement acts as a loop, checking a condition at the start and executing a following block of code if that condition is met. </span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/tIE8gD1XIc0&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/tIE8gD1XIc0&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdone.com/blog/2009/11/loops-while-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
