<?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"
	>
<channel>
	<title>Comments on: Shorthand PHP IF/ELSE Statements = much shorter code!</title>
	<atom:link href="http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/</link>
	<description>A coders playground.</description>
	<pubDate>Thu, 20 Nov 2008 23:02:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Shorthand PHP IF/ELSE Statements = much shorter code &#171; Kishore&#8217;s Bookmarks</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-8301</link>
		<dc:creator>Shorthand PHP IF/ELSE Statements = much shorter code &#171; Kishore&#8217;s Bookmarks</dc:creator>
		<pubDate>Wed, 29 Oct 2008 15:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-8301</guid>
		<description>[...] via Shorthand PHP IF/ELSE Statements = much shorter code! - Nodstrum [...]</description>
		<content:encoded><![CDATA[<p>[...] via Shorthand PHP IF/ELSE Statements = much shorter code! - Nodstrum [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryanisimo</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-4915</link>
		<dc:creator>Bryanisimo</dc:creator>
		<pubDate>Wed, 24 Sep 2008 15:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-4915</guid>
		<description>Hi, do you have a little error after "And the all important Explanation!", did you write:

echo ($myGender = ‘male’ ? ‘ selected’ : ”);

and should be:

echo ($myGender == ‘male’ ? ‘ selected’ : '');

Beacuse $myGender = ‘male’ ever is true and ever you got 'selected'. Have a nice day =)</description>
		<content:encoded><![CDATA[<p>Hi, do you have a little error after &#8220;And the all important Explanation!&#8221;, did you write:</p>
<p>echo ($myGender = ‘male’ ? ‘ selected’ : ”);</p>
<p>and should be:</p>
<p>echo ($myGender == ‘male’ ? ‘ selected’ : &#8221;);</p>
<p>Beacuse $myGender = ‘male’ ever is true and ever you got &#8217;selected&#8217;. Have a nice day =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dum</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-4054</link>
		<dc:creator>dum</dc:creator>
		<pubDate>Tue, 16 Sep 2008 11:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-4054</guid>
		<description>this is fantastic</description>
		<content:encoded><![CDATA[<p>this is fantastic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weasle</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1967</link>
		<dc:creator>Weasle</dc:creator>
		<pubDate>Sat, 16 Aug 2008 20:39:18 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1967</guid>
		<description>This is just what I was searching for - thanks for explaining it. I want to shorten my code as MUCH as possible, and while it may only shave a few microseconds off processing time to use shorthand like this, if you're running hundreds of processes a day - all those microseconds add up.</description>
		<content:encoded><![CDATA[<p>This is just what I was searching for - thanks for explaining it. I want to shorten my code as MUCH as possible, and while it may only shave a few microseconds off processing time to use shorthand like this, if you&#8217;re running hundreds of processes a day - all those microseconds add up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shopping cart</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1587</link>
		<dc:creator>shopping cart</dc:creator>
		<pubDate>Tue, 15 Jul 2008 12:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1587</guid>
		<description>Thanks, I have used conditional operator in C many times but not in PHP. Now I'll try it. It's really save space and time.</description>
		<content:encoded><![CDATA[<p>Thanks, I have used conditional operator in C many times but not in PHP. Now I&#8217;ll try it. It&#8217;s really save space and time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob C</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1321</link>
		<dc:creator>Rob C</dc:creator>
		<pubDate>Fri, 20 Jun 2008 10:53:34 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1321</guid>
		<description>Shorthand makes for such easier reading of code.
One could only wish that everyone stuck to a standard a such.

Ever had to endure someone else horrid coding style and got to the point where you thought your eyes were going to bleed? Yea, definitely not good.

You have some nice jquery stuff on here. Consider yourself bookmarked!

Thx,
R.</description>
		<content:encoded><![CDATA[<p>Shorthand makes for such easier reading of code.<br />
One could only wish that everyone stuck to a standard a such.</p>
<p>Ever had to endure someone else horrid coding style and got to the point where you thought your eyes were going to bleed? Yea, definitely not good.</p>
<p>You have some nice jquery stuff on here. Consider yourself bookmarked!</p>
<p>Thx,<br />
R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: the site company</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1230</link>
		<dc:creator>the site company</dc:creator>
		<pubDate>Tue, 10 Jun 2008 11:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1230</guid>
		<description>just what i needed for a project i'm working on, it's not like you can just code it from scratch, it's allways great and saves time to have the basic structure to work with.</description>
		<content:encoded><![CDATA[<p>just what i needed for a project i&#8217;m working on, it&#8217;s not like you can just code it from scratch, it&#8217;s allways great and saves time to have the basic structure to work with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1071</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sun, 11 May 2008 14:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://nodstrum.com/2008/02/14/shorthand-php-ifelse-statements-much-shorter-code/#comment-1071</guid>
		<description>Awesome!   I've been learning C and wondered if PHP allowed conditionals like C does, since they share the same syntax (for the most part.) 

I love your calendar, by the way.   Awesome stuff there.

=)</description>
		<content:encoded><![CDATA[<p>Awesome!   I&#8217;ve been learning C and wondered if PHP allowed conditionals like C does, since they share the same syntax (for the most part.) </p>
<p>I love your calendar, by the way.   Awesome stuff there.</p>
<p>=)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
