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