1.

What will be the output of the following PHP code ? <?php $x = 5; $y = 10; $z = "$x + $y"; echo "$z"; ?>

A. 15
B. 10 + 5
C. $z
D. $x + $y
Answer» C. $z


Discussion

No Comment Found