Q. What will be the output of the following PHP code ?
Code:
<?php
while()
{
print "While loop...";
}
?>
β
Correct Answer: (B)
Error
<?php
while()
{
print "While loop...";
}
?>
You must be Logged in to update hint/solution