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