Q. What will be the output of the following PHP code?
Code:<?php $a = "clue"; $a .= "get"; echo "$a"; ?>
β
Correct Answer: (D)
clueget
<?php $a = "clue"; $a .= "get"; echo "$a"; ?>
You must be Logged in to update hint/solution