Q. What will be the output of the following PHP code ?
Code:
<?php $country = "India"; echo "$country"; echo "$COUNTRY"; echo "$Country"; ?
β
Correct Answer: (B)
India
<?php $country = "India"; echo "$country"; echo "$COUNTRY"; echo "$Country"; ?
You must be Logged in to update hint/solution