$i = $i + 1; is the same as $i += 1; (and $i++; or ++$i;)
and so on
coopster
5:08 pm on Oct 27, 2005 (gmt 0)
True, except that Sarah is using strings as opposed to numbers. The actual term here is called the concatenating assignment operator ('.=') [php.net], which appends the argument on the right side to the argument on the left side.
Sarah Atkinson
5:42 pm on Oct 27, 2005 (gmt 0)
nifty time saving trick. I like it. noticed it in some code I got off the internet and though wow that's either a typo or kinda cool. looks very clean