-
Website
http://www.tech-recipes.com/ -
Original page
http://www.tech-recipes.com/rx/288/php-if-statement-syntax/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
davak
83 comments · 1 points
-
Web Design
3 comments · 1 points
-
danishbacker
9 comments · 1 points
-
flexinfo
11 comments · 1 points
-
Tonychelle
4 comments · 1 points
-
-
Popular Threads
-
Facebook: How To Get Only Status Updates on Your FB Home Page
1 week ago · 4 comments
-
Firefox: Enable Case Sensitive Searches When Using Find (Ctrl+F)
5 days ago · 1 comment
-
Windows 7: How To Disable Live Preview for Taskbar Thumbnails
2 weeks ago · 2 comments
-
Gmail: How to block a sender from your inbox
3 weeks ago · 3 comments
-
Our first iPhone game GreenThumb available in the App Store
4 weeks ago · 2 comments
-
Facebook: How To Get Only Status Updates on Your FB Home Page
while($row = mysql_fetch_row):
if($condition = true) { $something = $value }
endwhile;
that works. However, consider the following
while($row = mysql_fetch_row):
$something = ($condition = $true) ? $value : null;
endwhile;
If the condition is met, everything works fine, but on the next iteration of the loop, if the condition is not met, $something is set to null, which is probably not the desired effect 9 times out of 10.
I would advise the following as well
while($row = mysql_fetch_row):
if($condition = true) { $something = $value }
endwhile;
Thanking you
Anand V Mohan