So I'm starting to use CodeIgniter and I'm reading through some of the tutorials. I can't help feeling my intent style is out-dated.
I use "The One True Brace Style".However, everybody else seems to be using the Allman style.Code:if($bananas > 9) {
$bananaparty = TRUE;
} else {
echo "You do not have enough bananas for a banana party";
}
What do you use?Code:if($cats > 3)
{
echo "Too many cats";
}
else
{
echo "You have a normal amount of cats";
}

