

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $x = 5; { $x = 10; echo "$x"; } echo "$x"; ?> |
A. | 1010 |
B. | 105 |
C. | 510 |
D. | Error |
Answer» B. 105 | |