What will be the output of the following PHP code ?
<?php
function mine($m)
{
if ($m < 0)
echo "less than 0";
if ($ >= 0)
echo "Not True";
}
mine(0);
?>
<?php
function mine($m)
{
if ($m < 0)
echo "less than 0";
if ($ >= 0)
echo "Not True";
}
mine(0);
?>A. Less Than 0
B. Not True
C. No Output
D. None of the Mentioned
Answer: Option B

answer is D not B
answer D not B