Skip to content

Instantly share code, notes, and snippets.

@alperbayram
Created March 6, 2021 17:36
Show Gist options
  • Save alperbayram/25f9c62761d889e8348baa4e32062276 to your computer and use it in GitHub Desktop.
Save alperbayram/25f9c62761d889e8348baa4e32062276 to your computer and use it in GitHub Desktop.
<?php
if (!isset($_SESSION['counter']))
$_SESSION['counter'] = 0;
else {
$_SESSION['counter']++;
}
echo $_SESSION['counter'];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment