PHP - Loops
What will be the output of this PHP code?
$i = 1;
do {
echo $i . ' ';
$i++;
} while ($i <= 3);$i = 1;
do {
echo $i . ' ';
$i++;
} while ($i <= 3);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions