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