PHP - Sessions and Cookies
What will be the output of the following PHP code?
session_start(); $_SESSION['count'] = 1; $_SESSION['count']++; echo $_SESSION['count'];
