PHP - Request Lifecycle
Consider this PHP code run twice separately:
What will be the output on the second run?
<?php
session_start();
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
}
$_SESSION['count']++;
echo $_SESSION['count'];
?>What will be the output on the second run?
