In PHP you can concatenate with a comma instead of a period when using echo. Commas make you script faster. (warning: works only with echo) example: the fast: echo $var . $var2; the furious echo $var, $var2;
That's not concatenation then, is it, because no new variable's formed. Great tip, though! Thanks, it looks like echoing takes 40% less time with commas according to this.