PHP - Sessions and Cookies
Consider this PHP code:
What will it output on the first page load?
setcookie('lang', 'en', time() + 3600);
echo isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'No language set';What will it output on the first page load?
