Ok, I can understand using $var for certain variables that you may not want to be confused with other variables, and for private variables in classes. Ok thats fine.. but... my boss writes:
for( $_i=0; $_i<$_numRows; $_i++ ) {
$_key = mysql_result( $_result, $_i, 'linkTypeKey' );
$_label = mysql_result( $_result, $_i, 'linkTypeLabel' );
$_optionsList .= " <option value='" . $_key . "'>" . $_label . "</option>\n";
}
$_i ??????????????????????????????
(nevermind the muliple mysql_result calls when one mysql_fetch_array would suffice)
groannnnnnnnnnnnnnnnn