What will be the output of the following PHP code ?
<?php
echo "This"."was"."a"."bad"."idea";
?>
<?php
echo "This"."was"."a"."bad"."idea";
?>
A. This, was, a, bad, idea
B. This was a bad idea
C. Thiswasabadidea
D. Error
Answer: Option C
Join The Discussion