Q. What will be the output of the following PHP code ?
Code:
<?php
print("this"."was"."a"."bad"."idea");
?>
β
Correct Answer: (A)
thiswasabadidea
<?php
print("this"."was"."a"."bad"."idea");
?>
You must be Logged in to update hint/solution