Skip to content

Instantly share code, notes, and snippets.

@adisetiawan
Created July 29, 2013 02:11
Show Gist options
  • Save adisetiawan/6101775 to your computer and use it in GitHub Desktop.
Save adisetiawan/6101775 to your computer and use it in GitHub Desktop.
<?php
session_start();
if(!isset($_SESSION['firsttime'])) {
//user first time visit
$_SESSION['firstime'] = true;
//do whatever you want
} else {
} //user already visit this page
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment