User login count
Moderator: General Moderators
User login count
Is there a way to track how many times a specific user has logged onto your site?
- Johnm
- Forum Contributor
- Posts: 344
- Joined: Mon May 13, 2002 12:05 pm
- Location: Michigan, USA
- Contact:
Well,
If every user has to log into the site you probably have a database table or something of the sort with all of the user names and passwords in it. You could add an integer field to that table, set it initially to zero, and increment it each time a user logs on to your site.
If the user doesn't have to enter a user name or password then tracking usage accurately will be pretty much impossible.
Direwolf
If every user has to log into the site you probably have a database table or something of the sort with all of the user names and passwords in it. You could add an integer field to that table, set it initially to zero, and increment it each time a user logs on to your site.
If the user doesn't have to enter a user name or password then tracking usage accurately will be pretty much impossible.
Direwolf