Skip to content

Instantly share code, notes, and snippets.

@phpmypython
Created April 20, 2015 17:35
Show Gist options
  • Select an option

  • Save phpmypython/03ddb1e52bb3744d2005 to your computer and use it in GitHub Desktop.

Select an option

Save phpmypython/03ddb1e52bb3744d2005 to your computer and use it in GitHub Desktop.
sessions
<?php
$currentCookieParams = session_get_cookie_params();
$rootDomain = '.example.com';
session_set_cookie_params(
$currentCookieParams["lifetime"],
$currentCookieParams["path"],
$rootDomain,
$currentCookieParams["secure"],
$currentCookieParams["httponly"]
);
session_name('mysessionname');
session_start();
setcookie($cookieName, $cookieValue, time() + 3600, '/', $rootDomain);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment