I need a php user management script to replace a hand coded basic one I am using.
I need it to track parameters useful for doing analytics such as time of login, total login/surfing time, etc.
Now I think these features are (fairly) straightforward to implement, the login times being just another table of User_id/time() or $_SERVER['REQUEST_TIME'] and total login/surfing time on the site (assuming the user does not explicitly logout) can be approximated with accumulating time() as a session variable at each session_start(). I however would prefer to get one that's been coded with far more expertise and security features than my meager skills
Would be great if there was a GUI/admin feature that did some analytics, but at the most basic level login times and surfing times in a DB table will suffice
So anybody know a user management script (paid or free) that has these features built in?
Thanks a bunch in advance!
I need it to track parameters useful for doing analytics such as time of login, total login/surfing time, etc.
Now I think these features are (fairly) straightforward to implement, the login times being just another table of User_id/time() or $_SERVER['REQUEST_TIME'] and total login/surfing time on the site (assuming the user does not explicitly logout) can be approximated with accumulating time() as a session variable at each session_start(). I however would prefer to get one that's been coded with far more expertise and security features than my meager skills

Would be great if there was a GUI/admin feature that did some analytics, but at the most basic level login times and surfing times in a DB table will suffice
So anybody know a user management script (paid or free) that has these features built in?
Thanks a bunch in advance!