Q. What will be the output of the following PHP code ?
Code:<?php
$n = 0;
if ($n == 1)
if ($n >= 0)
print "True";
else
print "False";
?>
β
Correct Answer: (D)
Nothing
<?php
$n = 0;
if ($n == 1)
if ($n >= 0)
print "True";
else
print "False";
?>
You must be Logged in to update hint/solution