It helps to do things like this:
PHP Code:
if ($foo=="bar") {
for ($i=10; $i>0; $i--) {
echo "Who's your daddy?!?!";
} // for ($i=10; $i>0; $i--)
} // if ($foo=="bar")
and even easier:
PHP Code:
if ($foo=="bar")
{
for ($i=10; $i>0; $i--)
{
echo "Who's your daddy?!?!";
}
// for ($i=10; $i>0; $i--)
}
// if ($foo=="bar")
like the standard is on C/++.
Personally I use the first method, then when releasing the code I just remove the comments to make it cleaner (the comments just help when testing the script, that's all).