I have a web form that allows multiple users to log in with their email address.
Each email (with a unique VisitorID) is being inserted into the database. Once the visitor clicks the submit button, I need to assign a SessionID to all the visitors that just signed in.
Any ideas of the best way to do this?
For example, if 5 visitors come in and signin they may all have a session id of 2. Another group comes in 2 hours later, they should have a sessionID of 3.
Go to the complete details ...