phpSensei Posted August 20, 2007 Share Posted August 20, 2007 I have this idea which doesnt work, but help me... This is to show the number of guest's online. 1- First We Check if the ip is registered, if not we register the ip. 2- If the ip is registered, I add 1 to the guest online table. Now thats the basic idea.. How do you make it so it does a -1 everytime the session of the ip is ended? Link to comment https://forums.phpfreaks.com/topic/65875-guests-online/ Share on other sites More sharing options...
Solarpitch Posted August 20, 2007 Share Posted August 20, 2007 // When session is ended... Session_count = Session_Count - 1; Id say something like that Link to comment https://forums.phpfreaks.com/topic/65875-guests-online/#findComment-329271 Share on other sites More sharing options...
phpSensei Posted August 20, 2007 Author Share Posted August 20, 2007 is there any function called session_count??? Link to comment https://forums.phpfreaks.com/topic/65875-guests-online/#findComment-329274 Share on other sites More sharing options...
Solarpitch Posted August 20, 2007 Share Posted August 20, 2007 No, session count is an example of the variable you use to hold the value. ie: the number of sessions Every time an ip is registered you increment the value of $session_count and decrement when the session is ended. I am sure theres a better way of doing this, sessions are not my strong point Link to comment https://forums.phpfreaks.com/topic/65875-guests-online/#findComment-329277 Share on other sites More sharing options...
phpSensei Posted August 20, 2007 Author Share Posted August 20, 2007 lol, okay thanks. Link to comment https://forums.phpfreaks.com/topic/65875-guests-online/#findComment-329280 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.