Develop PHP Website for Learning Web Design Free Online
  Home   |   Forums   |   DevCMS
  Join   |   Log In
 
   

Forum Index >> PHP and MySQL Forum

Holder
user online counting in php??
   New topic    
 
user online counting in php??
by stephengeronim - Wed Jul 28, 2010 09:53:23 PM

if user is login count 1 and if it is logout it will bac to zeo  ?? any code for this?? 
stephengeronim
Forum & Site XP Level:

Philippines
mindanao
davao

LeoLeo
Posts: 5
Joined: 07/20/10
Website: URL

RE: user online counting in php??
by Adam - Thu Jul 29, 2010 01:07:00 AM

You can do this in each script. For the login script you simply UPDATE that mysql field for the user to be a 1. For the logout script you query the database to UPDATE the field to be 0.

But using that method, if a user does not log out by clicking log out, then they will still appear logged in.

This is why PHP "user online" scripts work by checking a time difference of now() and the last time they were active on a page or surfing the site. If the time difference is more than 5 minutes since their last activity... you remove them from the "userOnline" database table made for logging and unlogging active users.

I used to have that system here where I had a table that would add each member that is active on the site. Then my PHP script would check to see if their last activity time is past 5 minutes ago... if it was... they get removed and appear "offline".
Adam
Forum & Site XP Level:

United States of America
NC
Lake Toxaway

ScorpioScorpio
Posts: 4366
Joined: 04/20/08
Website: URL

RE: user online counting in php??
by stephengeronim - Thu Jul 29, 2010 05:51:37 AM

tnx adam.. =)
stephengeronim
Forum & Site XP Level:

Philippines
mindanao
davao

LeoLeo
Posts: 5
Joined: 07/20/10
Website: URL

RE: user online counting in php??
by madpotatokipp - Thu Jul 29, 2010 03:23:40 PM

I did a tutorial on what Adam was talking about if you want to download the source, just go here and click  Active Guest And Member System.
http://www.madpotatokipp.com/tutorials/

madpotatokipp
Forum & Site XP Level:

United States of America
Wisconsin
Beloit

PiscesPisces
Posts: 116
Joined: 05/18/10
Website: URL

RE: user online counting in php??
by stephengeronim - Thu Jul 29, 2010 07:37:03 PM

tnx mad.. u save my time.. Happy
stephengeronim
Forum & Site XP Level:

Philippines
mindanao
davao

LeoLeo
Posts: 5
Joined: 07/20/10
Website: URL

   New topic  
 
 
Arbitrary Links and Archives
Home
Active Forums
Members
SIte News
Link To Us
Gear
2009 Forum Archive
Programming Courses
Learn HTML
Learn CSS
Learn PHP
Learn MySQL
Learn Javascript
Learn jQuery
Learn ActionScript 3.0
Learn Java
Learn XML
DevelopPHP Requires Flash Player
Get Adobe Flash player
___________________________________________

Terms of Use  •  Privacy  •  Admin Notes

©2010 developphp.com   |   Powered By FlashBuildingHolder