PHP Functions
What will be the output of the following PHP code ?
function mine($m)
{if ($m < 0)
echo "less than 0";
if ($ >= 0)
echo "Not True";
}
mine(0);

No Output
Less Than 0
None of the Mentioned
Not True

ANSWER DOWNLOAD EXAMIANS APP