Page 1 of 1

User login count

Posted: Thu Aug 01, 2002 7:42 am
by bedcor
Is there a way to track how many times a specific user has logged onto your site?

Posted: Thu Aug 01, 2002 8:06 am
by Johnm
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