Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$hello = "Hello World";
$bye = "Bye";
echo $hello;"$bye";
?>
Answer : Option A
Explanation :
Since there is a semi-colon in between $hello and $bye, the line ends at $hello. However $bye would have printed if a echo was present before “$bye”.
Be The First To Comment