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? Quote 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 Quote 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??? Quote 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 Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/65875-guests-online/#findComment-329280 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.