i've got a page let's call it page1.php for this purpose of this.
$_SESSION['Date'] = // my date;
via a ajax script i'm adding a set time to the session's date on a set interval of 4 minutes.
(my ajax code)
$myDate = date($_SESSION[Date']);
$date = strtotime(date("Y-m-d", strtotime($mydate)) . " +1 month");
$_SESSION['Date'] = $date;
however page on page1 when i click to another page (say page2.php) i don't get the updated session date.
why?