PHP - Sessions and Cookies
What will be the output of the following PHP code?
session_start(); $_SESSION['user'] = 'Alice'; session_unset(); echo isset($_SESSION['user']) ? 'Exists' : 'Not exists';
