Q. What will be the output of the following PHP code ?
Code:
<?php $str = 'Hello'; print "PHP".$str."World"; ?>
β
Correct Answer: (C)
HelloPHPWorld
<?php $str = 'Hello'; print "PHP".$str."World"; ?>
You must be Logged in to update hint/solution