<?for ($x = 1, $y = 1, $z = 1; //initial expressions $y < 10, $z < 10; // termination checks $x = $x + 1, $y = $y + 2, // loop-end expressions $z = $z + 3){ print("$x, $y, $z<BR>");}?>