I am new to java and here I faced a problem.
I have a login application in my project and I want to count the number of users that are accessing my project by login authentication.
How can I know the number of users(50, 100….etc) in each day let’s say.
How can I see total number of users from a specific date up to now those have accessed my project by login? For example, let’s say person A logged in and count will be 1, then person B logged in then count will be 2.
I’m using Java with an Oracle database, on Windows XP.
I’m assuming the users are in a database, you could keep track of each time a specific user logs in, and then just sum all of those columns to get the total number of logins.