PHP - Loops
What is the error in this nested loop PHP code?
for ($x = 1; $x <= 4; $x++) {
for ($y = 1; $y <= 3; $y++) {
echo $x + $y . ' ';
$x++;
}
}