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