PHP - Sessions and Cookies
What will be the output of the following PHP code?
setcookie('user', 'Alice');
if(isset($_COOKIE['user'])) {
echo 'User is ' . $_COOKIE['user'];
} else {
echo 'User cookie not set';
}