<?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: PHP If Statment Fundamentals</title>
	<atom:link href="http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/</link>
	<description>Personal commentary on technology with a sprinkling of tech-tips and how-to articles</description>
	<lastBuildDate>Fri, 03 Sep 2010 01:36:14 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michael</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-5120</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 06 May 2009 23:07:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-5120</guid>
		<description>I didn&#039;t think so. Which is why I wondered why the author named one as the &#039;standard&#039; form and the other as the &#039;extended&#039; form. Both styles can be used either way, so his separation of the two for the reasons he gives seems irrelevant.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t think so. Which is why I wondered why the author named one as the &#8217;standard&#8217; form and the other as the &#8216;extended&#8217; form. Both styles can be used either way, so his separation of the two for the reasons he gives seems irrelevant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ToMicheal</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-5084</link>
		<dc:creator>ToMicheal</dc:creator>
		<pubDate>Wed, 15 Apr 2009 22:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-5084</guid>
		<description>There is no difference....</description>
		<content:encoded><![CDATA[<p>There is no difference&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shadouwolf</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-5081</link>
		<dc:creator>Shadouwolf</dc:creator>
		<pubDate>Tue, 14 Apr 2009 21:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-5081</guid>
		<description>I checked it out and i was wrong.

 $b):
    echo $a.&quot; is greater than &quot;.$b;
elseif($a == $b): // Note the combination of the words.
    echo $a.&quot; equals &quot;.$b;
else:
    echo $a.&quot; is neither greater than or equal to &quot;.$b;
endif;
?&gt;

the only difference seems that the coder doesn&#039;t need to use the { } . I guess its just personal preference.</description>
		<content:encoded><![CDATA[<p>I checked it out and i was wrong.</p>
<p> $b):<br />
    echo $a.&#8221; is greater than &#8220;.$b;<br />
elseif($a == $b): // Note the combination of the words.<br />
    echo $a.&#8221; equals &#8220;.$b;<br />
else:<br />
    echo $a.&#8221; is neither greater than or equal to &#8220;.$b;<br />
endif;<br />
?&gt;</p>
<p>the only difference seems that the coder doesn&#8217;t need to use the { } . I guess its just personal preference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shadouwolf</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-5080</link>
		<dc:creator>Shadouwolf</dc:creator>
		<pubDate>Tue, 14 Apr 2009 21:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-5080</guid>
		<description>I&#039;m not certain but i think that when using 
 10): ?&gt;
100

10

I think you can&#039;t add an elseif statement.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not certain but i think that when using<br />
 10): ?&gt;<br />
100</p>
<p>10</p>
<p>I think you can&#8217;t add an elseif statement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-5064</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 04 Apr 2009 23:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-5064</guid>
		<description>Okay, my code seems to have gone wrong. I&#039;ll try again.

What are the differences between...

&lt; ?php if ($i &gt; 1): ?&gt;

&lt; table&gt;

&lt; tr&gt;

&lt; td&gt;Hello&lt; /td&gt;

&lt; /tr&gt;

&lt; /table&gt;

&lt; ?php endif; ?&gt;

... and...

&lt; ?php if ($i &gt; 1) { ?&gt;

&lt; table&gt;

&lt; tr&gt;

&lt; td&gt;Hello&lt; /td&gt;

&lt; /tr&gt;

&lt; /table&gt;

&lt; ?php } ?&gt;</description>
		<content:encoded><![CDATA[<p>Okay, my code seems to have gone wrong. I&#8217;ll try again.</p>
<p>What are the differences between&#8230;</p>
<p>&lt; ?php if ($i &gt; 1): ?&gt;</p>
<p>&lt; table&gt;</p>
<p>&lt; tr&gt;</p>
<p>&lt; td&gt;Hello&lt; /td&gt;</p>
<p>&lt; /tr&gt;</p>
<p>&lt; /table&gt;</p>
<p>&lt; ?php endif; ?&gt;</p>
<p>&#8230; and&#8230;</p>
<p>&lt; ?php if ($i &gt; 1) { ?&gt;</p>
<p>&lt; table&gt;</p>
<p>&lt; tr&gt;</p>
<p>&lt; td&gt;Hello&lt; /td&gt;</p>
<p>&lt; /tr&gt;</p>
<p>&lt; /table&gt;</p>
<p>&lt; ?php } ?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-5063</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 04 Apr 2009 23:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-5063</guid>
		<description>Hi. Just a quick question: what are the differences between...

 1): ?&gt;





Hello







... and...

 1) { ?&gt;





Hello





</description>
		<content:encoded><![CDATA[<p>Hi. Just a quick question: what are the differences between&#8230;</p>
<p> 1): ?&gt;</p>
<p>Hello</p>
<p>&#8230; and&#8230;</p>
<p> 1) { ?&gt;</p>
<p>Hello</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awake</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-5058</link>
		<dc:creator>awake</dc:creator>
		<pubDate>Thu, 02 Apr 2009 19:52:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-5058</guid>
		<description>very useful...</description>
		<content:encoded><![CDATA[<p>very useful&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bret</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-4223</link>
		<dc:creator>Bret</dc:creator>
		<pubDate>Sun, 24 Aug 2008 13:30:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-4223</guid>
		<description>Hey, glad you found the if statement summary useful.  Thanks for the comment.</description>
		<content:encoded><![CDATA[<p>Hey, glad you found the if statement summary useful.  Thanks for the comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Add URL</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-4172</link>
		<dc:creator>Add URL</dc:creator>
		<pubDate>Fri, 08 Aug 2008 23:01:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-4172</guid>
		<description>Nice summation. I&#039;ve struggled with the syntax quite a bit since moving over to PHP.</description>
		<content:encoded><![CDATA[<p>Nice summation. I&#8217;ve struggled with the syntax quite a bit since moving over to PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/comment-page-1/#comment-3854</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 31 May 2008 02:31:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.techtraction.com/2008/05/07/php-if-statment-fundamentals/#comment-3854</guid>
		<description>This has given me a new direction to think about as I would not have thought about it myself, although im not convinced its the best approach ......</description>
		<content:encoded><![CDATA[<p>This has given me a new direction to think about as I would not have thought about it myself, although im not convinced its the best approach &#8230;&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.315 seconds -->
