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