Jump to content

Session / Cookies trouble


bbwst11

Recommended Posts

Hello,

I have the following code. I am trying to have it same the searches save for 30 days. I can't tell exactly how long this works for because it does work for a while but when I open the browser the following day, the information is lost. The server time is accurate. Does anyone have any clue to why this might not work?

session_set_cookie_params(2592000);

  session_name('test_mysearches');

  session_start();

 

$rqstsignature = md5($_SERVER['REQUEST_URI'].$_SERVER['QUERY_STRING'].print_r($_POST, true));

 

 

if(!isset($_SESSION['mysearches'])) {

    $_SESSION['mysearches'] = array($_GET['s']);

} else {

if ($_GET['s'] != '') {

$_SESSION['mysearches'] = array_filter($_SESSION['mysearches'], 'strlen');

if ($_SESSION['LastRequest'] != $rqstsignature) { // not a refresh

 

array_unshift($_SESSION['mysearches'], $_GET['s']);

$_SESSION['LastRequest'] = $rqstsignature;

 

while(count($_SESSION['mysearches']) > 5) {

array_pop($_SESSION['mysearches']);

}

}

}

}

 

thanks in advance.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.