R
Q. What will be the output of the following PHP code?
Code:
<?php
$x = 10;
while ($x < 10) {
$x++;
echo $x, ",";
}
?>
$x = 10;
while ($x < 10) {
$x++;
echo $x, ",";
}
?>
- Correct Answer - Option(D)
- Views: 151
- Filed under category PHP
Discusssion
Login to discuss.