* David Cantrell ([EMAIL PROTECTED]) wrote:
> 
> if($foo) { do_foo_stuff(); }
>  else { do_other_stuff(); }
> 

Now you are being silly, you know it should be ...

if ($foo) { 
    do_foo_stuff(); 
} else { 
    do_other_stuff(); 
}

this is much much better.

Greg

-- 
Greg McCarroll                                 http://217.34.97.146/~gem/

Reply via email to