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