$x=0; $x += 1; // the
same as $x = $x + 1; $x--; // the same as $x = $x -
1; $x *=
3; // the same as $x = $x * 3; $x /= 2; // the
same as $x = $x / 2; $x %= 4; // the same as $x = $x %
4;
$x=""; $x .= 'A'; // append char
to an existing string $x .= "BC"; // append string to
an existing string