Display total online users in web page
November 13th, 2009
No comments
Here, how you can display total number of online user in your webpage you want. Just include file name, which I have given file name as online-user.php here. You need to include this file on any php page you want to display total users online.
I have developed this php script to implement on my own webpage.
See this, I have implement this on http://www.ashesh.com.np/nepali-date-converter.php
-
Example for how to include online-user.php in web page.
< ?php include 'path/online-user.php'; ?>
online-user.php
1 2 3 4 | < ?php $rip = $_SERVER['REMOTE_ADDR']; $sd = time(); $count = 1; <a href="http://www.ashesh.com.np/display-total-online-users-in-web-page/#more-1037" class="more-link">Read more... |


