Session Counter
You have visited this page:
1
time
Session Information
| Session ID: | 14f6b33404f7bb9b79030f7d34ab58ff |
| First Visit: | 2026-03-21 23:16:51 |
| Session Name: | PHPSESSID |
Try These Experiments
- Refresh the page - counter increases
- Open in new tab - same session, same count
- Open in incognito/private window - new session, count starts at 1
- Open in different browser - new session, count starts at 1
- Close all tabs and reopen - might keep session (depends on browser)
The Code
<?php
session_start();
// Initialize if not set
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
}
// Increment
$_SESSION['count']++;
echo "Visit count: " . $_SESSION['count'];
?>