Why don't people write nice easy to read code - by using curly braces to shape code, and make it more pliable
for example:
if ($var != "1")
{
//see how much easier it is to read
}
rather than:
if ($var != "1") {
//it doesn't make much difference here, but does in large blocks of code
}
It's just so much easier to read, and maintain. Also, you will waste less time as you may see the obvious mistakes in your code - such as too many/too few curly braces etc