Hi,
I'm using a user defined session handler which interfaces with MySQL. For some strange reason every time I refresh a page it generates a new session id. I'm using cookies.
Program structure is as follows:
<?
include("mysql_session_handler_library.inc");
// at the bottom of the included library I
// call session_set_save_handler.
session_start();
//doing some stuff here
echo session_id();
?>
It is like it is not using cookies...
Any ideas?