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