?
What will be the output of the following PHP code ?
What will be the output of the following PHP code ?
<?php
$a = 10;
if (0)
print "all";
if
else
print "some"
?>
<?php
$a = 10;
if (0)
print "all";
if
else
print "some"
?>
Answer & Solution
Correct Answer:
Option
C
No else statement to end the if statement.
Join the Discussion
Login to post a comment or share your explanation.
Login