Q. What will be the output of the following PHP code?
Code:<?php
$x = 10;
while ($x < 10) {
$x++;
echo $x, ",";
}
?>
β
Correct Answer: (D)
No output
<?php
$x = 10;
while ($x < 10) {
$x++;
echo $x, ",";
}
?>
You must be Logged in to update hint/solution