Indentation
One tab will be used for indentation.
So, indentation should look like this:
<?php
// base level
// level 1
// level 2
// level 1
// base level
?> <?php// base level// level 1// level 2// level 1// base level?>
Or:
$booleanVariable = true;
$stringVariable = "moose";
if ($booleanVariable) {
echo "Boolean value is true";
if ($stringVariable == "moose") {
echo "We have encountered a moose";
}
}
$booleanVariable = true;$stringVariable = "moose";if ($booleanVariable) {echo "Boolean value is true";if ($stringVariable == "moose") {echo "We have encountered a moose";}}


























