mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
10 lines
135 B
PHP
10 lines
135 B
PHP
<?php
|
|
session_start();
|
|
|
|
if(!isset($_SESSION['count'])) {
|
|
$_SESSION['count'] = 0;
|
|
}
|
|
|
|
$_SESSION['count']++;
|
|
echo $_SESSION['count'];
|