<?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: Find Odd Or Even Numbers</title>
	<atom:link href="http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers</link>
	<description>Learn PHP Online</description>
	<lastBuildDate>Fri, 03 Sep 2010 17:39:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Baseer</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-2086</link>
		<dc:creator>Baseer</dc:creator>
		<pubDate>Sat, 15 May 2010 08:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-2086</guid>
		<description>Its easy but if you provide some visual lesson then it will be more convenient for us</description>
		<content:encoded><![CDATA[<p>Its easy but if you provide some visual lesson then it will be more convenient for us</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sameer dhakal</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-1631</link>
		<dc:creator>sameer dhakal</dc:creator>
		<pubDate>Wed, 17 Feb 2010 18:04:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-1631</guid>
		<description>oh thanks</description>
		<content:encoded><![CDATA[<p>oh thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shakil</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-1423</link>
		<dc:creator>shakil</dc:creator>
		<pubDate>Wed, 13 Jan 2010 09:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-1423</guid>
		<description>i want to use a function and inside that function i have to use conditional operator so that i can get the even number that are divided by 2 with a remainder 0.
i have done but i can&#039;t get the exact output in echo command.
can anyone advise me?</description>
		<content:encoded><![CDATA[<p>i want to use a function and inside that function i have to use conditional operator so that i can get the even number that are divided by 2 with a remainder 0.<br />
i have done but i can&#8217;t get the exact output in echo command.<br />
can anyone advise me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthoni Raj</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-1079</link>
		<dc:creator>Anthoni Raj</dc:creator>
		<pubDate>Mon, 23 Nov 2009 04:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-1079</guid>
		<description>ur details r very good....</description>
		<content:encoded><![CDATA[<p>ur details r very good&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-717</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Sun, 16 Aug 2009 19:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-717</guid>
		<description>Hi there, Can you provide a server to execute these codes ?</description>
		<content:encoded><![CDATA[<p>Hi there, Can you provide a server to execute these codes ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xgee</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-694</link>
		<dc:creator>xgee</dc:creator>
		<pubDate>Mon, 03 Aug 2009 00:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-694</guid>
		<description>hi - you need you use the variable $counter instead of $num on the if statement inside the for-loop.

&quot;if (is_odd($counter)) {&quot;</description>
		<content:encoded><![CDATA[<p>hi &#8211; you need you use the variable $counter instead of $num on the if statement inside the for-loop.</p>
<p>&#8220;if (is_odd($counter)) {&#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jakob</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-687</link>
		<dc:creator>Jakob</dc:creator>
		<pubDate>Wed, 29 Jul 2009 01:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-687</guid>
		<description>First a complaint, then a compliment.  7 % 2 = 1, not .5; You&#039;re confusing division with modulo (7 / 2 = 3.5).  With 7 modulo 2,  2 goes into 7, 3 complete times, with a remainder of 1.  Try it:  echo (7%2);  Also, i&#039;ve never seen someone explain binary quite as well, your graphics were very helpful in this purpose.  Good job.</description>
		<content:encoded><![CDATA[<p>First a complaint, then a compliment.  7 % 2 = 1, not .5; You&#8217;re confusing division with modulo (7 / 2 = 3.5).  With 7 modulo 2,  2 goes into 7, 3 complete times, with a remainder of 1.  Try it:  echo (7%2);  Also, i&#8217;ve never seen someone explain binary quite as well, your graphics were very helpful in this purpose.  Good job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suman</title>
		<link>http://www.learnphponline.com/php-basics/find-odd-or-even-numbers/comment-page-1#comment-601</link>
		<dc:creator>suman</dc:creator>
		<pubDate>Mon, 22 Jun 2009 11:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=33#comment-601</guid>
		<description>hi
thankx sir i am able to learn php in easier way.</description>
		<content:encoded><![CDATA[<p>hi<br />
thankx sir i am able to learn php in easier way.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
