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