Skip to content

Instantly share code, notes, and snippets.

@jasonrhodes
Last active August 29, 2015 14:03
Show Gist options
  • Save jasonrhodes/d28f563f8afca9a547f8 to your computer and use it in GitHub Desktop.
Save jasonrhodes/d28f563f8afca9a547f8 to your computer and use it in GitHub Desktop.
<?php
session_start();
if (!isset($_SESSION['incr'])) {
$_SESSION['incr'] = 0;
} else {
$_SESSION['incr']++;
}
var_dump($_SESSION);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment