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