php database session handling problem in IE8!

Posted by psyb0rg on Stack Overflow See other posts from Stack Overflow or by psyb0rg
Published on 2010-04-02T19:46:55Z Indexed on 2010/04/02 19:53 UTC
Read the original article Hit count: 221

Filed under:
|
|
|
|

I've got an html page from where Im making this call periodically:

function logon(id)
{
 $.get("data.php", { action: 'online', userID: id}, function(data){
  $("#msg").html(data);
 });
}

What this does is it calls this SQL script in data.php:

$sql = "update user_sessions set expires=(expires + 2) where userID = $userID";
mysql_query($sql, $conn) or die(mysql_error());
echo $sql;

I can see by the echo that the sql syntax and values are correct, but THE CHANGES TO THE expires FIELD ARE NOT DONE, ONLY IN IE8!! It works fine in other ff, safari, chrome, ie6 and 7.

There is nothing browser specific about making this sql call, but the user_sessions table is used to store PHP's sessions. Im only increasing the session expiry time when the call is made. What in IE8's session handling is preventing the session time from changing? Is there any caching or cookie problem that needs to be changed?

© Stack Overflow or respective owner

Related posts about php

Related posts about session