1.

What will be the output of the following PHP code ? <?php $color1 = "red"; $color2 = "1"; $color3 = "grey" echo "$color1" + "$color2" . "$color3"; ?>

A. 1grey
B. Grey
C. 0
D. Red1grey
Answer» B. Grey


Discussion

No Comment Found