PHP - Sessions and Cookies
What will be the output of the following PHP code?
session_start(); $_SESSION['username'] = 'Bob'; session_unset(); echo isset($_SESSION['username']) ? $_SESSION['username'] : 'Guest';
