Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
echo "This"."was"."a"."bad"."idea";
?>
Answer : Option C
Explanation :
In an echo statement the dot operator is used to join strings.
Be The First To Comment