Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$a = "$winner";
$b = "/$looser";
echo $a,$b;
?>
Answer : Option C
Explanation :
Since variables $winner and $looser is not defined we only see / as output.
Be The First To Comment