05-06-2009, 12:00 PM
|
#3 (permalink)
|
|
The Gregarious
Join Date: Feb 2009
Location: New York
Posts: 646
Thanks: 64
|
You can try to do things short handed, so if you have a quick conditional, you don't have to use brackets like so:
if($a) {
echo "hello";
}
That's 2 brackets you have to worry about. But you can just do this:
if($a) echo "hello";
|
|
|
|