A
Q. What will be the output of the following PHP code ?
Code:
<?php
switch($t)
{
case 2:
print "Hello";
break;
case 1:
print "World";
break;
}
?>
switch($t)
{
case 2:
print "Hello";
break;
case 1:
print "World";
break;
}
?>
- Correct Answer - Option(A)
- Views: 17
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.