I am talking about embedding vars inside strings. It is fine to build a var by concatenating strings and vars.

'this is a $var in a string' ;EVIL
$var2 = 'this is a ' + $var + ' concatenated' ;GOOD

use NoVarsInStrings to rid yourself of the evil ways.
_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.