Reputation: 11
I would like a splashscreen (php page) showing up when a user enters my site, but only once. Any easy way to do this?
Thanks
Upvotes: 1
Views: 472
Reputation: 1306
Set a $_SESSION variable and check it if its set.
session_start();
if(isset($_SESSION['userwashere'])){
//show the site code
} else {
//show the splashscreen code
$_SESSION['userwashere'] = true;
}
Upvotes: 2