##################
################## Codeigniter Lab for COMP4711
##################
################## krstlb - Krystle Bulalakaw, Frozenhawk - Scott Plummer, SpenserL - Spenser Lee
##################
##################
- key words have a space between the word and parentheses,
if () {}
- blocks have the opening bracket on the same line
switch () {
}
- variable names are camel case. Start with a lowercase and every word after starting with a uppercase,
$thisIsSomething = true;
- leave a space after all of the variable declarations
$one = 1;
$two = 2;
$three = 3;
// Start logic here