you can store de values of sessions by using a database
like mysql or postgresql it's work well with php.
here is how to store a session in the db
$query="insert into session";
$query .="values ('$session', now())";
mysql_query($query, $mysql_link);
I suppose you have a db with the script of connection
and the script for build a session
@+