Q. What will be the output of the following PHP code ?
Code:<?php
$t = 20;
do
{
$t++;
}
while ($t < 60);
print $t;
?>
β
Correct Answer: (B)
60
<?php
$t = 20;
do
{
$t++;
}
while ($t < 60);
print $t;
?>
You must be Logged in to update hint/solution