1.

What will be the output of the following PHP code? Say your previous session username was Manjesh.
unset($_SESSION['username']);
printf("Username now set to: %s", $_SESSION['username']);

A. Username now set to: System
B. Username now set to: Manjesh
C. Error
D. Username now set to:
E. None of these
Answer» E. None of these


Discussion

No Comment Found