Q. What will be the output of the following PHP code ?
Code:
<?php
$num = "";
if ($num)
print "Second";
else
print "First";
?>
β
Correct Answer: (C)
First
<?php
$num = "";
if ($num)
print "Second";
else
print "First";
?>
You must be Logged in to update hint/solution