i am creating a new DB for each user that opens a session in my session.open.
is there a simple way to get a number for the session which is active, which I can use to create a temp table.
I cannot use session.reference as this number changes and after a lot of logins i have loads of seperate files.
I cannot use session.remoteaddress as if 2 users log in from the same address they will use the same table.
is there a way i can get a session count for the currently logged in session, which is unique.
every time the session is started I dump the database
i cannot use memory db’s as the data is large and will fill all memory.
dave