A
Q. What will be the output of the following PHP code ?
Code:
<?php
$num = 12;
if (echo $num)
print "True";
else
print "False";
?>
$num = 12;
if (echo $num)
print "True";
else
print "False";
?>
- Correct Answer - Option(D)
- Views: 11
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.