A
Q. What will be the output of the following PHP code ?
Code:
<?php
$num = 2;
while ($num != 5)
{
print "Executed...";
$num++;
}
?>
$num = 2;
while ($num != 5)
{
print "Executed...";
$num++;
}
?>
- Correct Answer - Option(C)
- Views: 11
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.