Quote:
Originally Posted by JkWhoSaysNi
Me either. The spaces inside the ( brackets offend me too
Heres how I do it:
PHP Code:
if (var) {
...
}
i guess if (var) has more meaning if you name your boolean variables as verbs as I tend to do e.g. if (finished)
|
Same as me then, although I would do:
PHP Code:
if (var == true) {
...
}