
04-10-2007, 04:29 AM
|
the fake one
|
 |
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
|
|
Quote:
Originally Posted by xXziroXx
I, too, think that example A looks better then example B.
A: if (var == true) { .... }
B: if (var) { .... }
|
C:
PHP Code:
if ( var == true ) { ... }
C seems better than both  |
|
|