<?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: Coding PHP Loops Easily</title>
	<atom:link href="http://lunatic.web.id/webdev/coding-php-loops-easily/feed/" rel="self" type="application/rss+xml" />
	<link>http://lunatic.web.id/webdev/coding-php-loops-easily/</link>
	<description>Rants about tech and design</description>
	<lastBuildDate>Thu, 12 Aug 2010 20:02:01 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kip</title>
		<link>http://lunatic.web.id/webdev/coding-php-loops-easily/comment-page-1/#comment-72</link>
		<dc:creator>kip</dc:creator>
		<pubDate>Mon, 14 Sep 2009 13:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://lunatic.web.id/?p=157#comment-72</guid>
		<description>*woops, got cleanup* 
To make it more simple, if you want just to echo the value, instead using &lt;code&gt;&lt;/code&gt;
try using &lt;code&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>*woops, got cleanup*<br />
To make it more simple, if you want just to echo the value, instead using <code></code><br />
try using <code></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kip</title>
		<link>http://lunatic.web.id/webdev/coding-php-loops-easily/comment-page-1/#comment-71</link>
		<dc:creator>kip</dc:creator>
		<pubDate>Mon, 14 Sep 2009 13:08:54 +0000</pubDate>
		<guid isPermaLink="false">http://lunatic.web.id/?p=157#comment-71</guid>
		<description>To make it more simple, if you want just to echo the value, instead using  
try using </description>
		<content:encoded><![CDATA[<p>To make it more simple, if you want just to echo the value, instead using<br />
try using</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://lunatic.web.id/webdev/coding-php-loops-easily/comment-page-1/#comment-27</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 21 May 2009 16:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://lunatic.web.id/?p=157#comment-27</guid>
		<description>oh well.</description>
		<content:encoded><![CDATA[<p>oh well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://lunatic.web.id/webdev/coding-php-loops-easily/comment-page-1/#comment-26</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 21 May 2009 16:18:07 +0000</pubDate>
		<guid isPermaLink="false">http://lunatic.web.id/?p=157#comment-26</guid>
		<description>My own preference in this case would be...
&lt;code&gt;&lt;?php
$output = array();
for ($i = 1; $i &lt; 10; $i++) {
  $output[] = &#039;&lt;a href=&quot;?p=&#039; . $i . &#039;&quot; rel=&quot;nofollow&quot;&gt;Go to page # &#039; . $i . &#039;&lt;/a&gt;&#039;;
}
print implode(&quot;\n&quot;, $output);
?&gt;&lt;/code&gt;

or if wrapped in a function (as it probably should be), this would return $output, not print it.

(you should have a preview option, btw)</description>
		<content:encoded><![CDATA[<p>My own preference in this case would be&#8230;<br />
<code>&lt;?php<br />
$output = array();<br />
for ($i = 1; $i &lt; 10; $i++) {<br />
  $output[] = '<a href="?p=' . $i . '" rel="nofollow">Go to page # ' . $i . '</a>';<br />
}<br />
print implode("\n", $output);<br />
?&gt;</code></p>
<p>or if wrapped in a function (as it probably should be), this would return $output, not print it.</p>
<p>(you should have a preview option, btw)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
