PHP - Sessions and Cookies
Find the error in this PHP session code:
<?php session_start(); $_SESSION['name'] = 'Eve'; session_destroy(); echo $_SESSION['name']; ?>
