Ive been curious about whats the most common styling with using true/false variables, so I figured Id make a poll about it.
Alternative A:
PHP Code:
if (this.var == true)
if (this.var == false)
Alternative B:
PHP Code:
if (this.var)
if (!this.var)
I, personally, go with alternative A.