A
Q. What will be the output of the following PHP code ?
Code:
<?php
$num = 20;
if (1)
print "First";
else
print "Second";
else
print "Third";
?>
$num = 20;
if (1)
print "First";
else
print "Second";
else
print "Third";
?>
- Correct Answer - Option(A)
- Views: 10
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.