1.

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

A. $z
B. 15
C. 8
D. 1
Answer» D. 1


Discussion

No Comment Found