Welcome Guest ( Log In | Register )



 
Reply to this topicStart new topic
> Users online!, show it on your site!!
websaint
post Sep 28 2004, 09:10 PM
Post #1


Member [ Level 1 ]
Group Icon

Group: [HOSTED]
Posts: 43
Joined: 15-September 04
Member No.: 610



Sometimes it could be useful to know how many users you got online at the moment. You can do this very easely by simple adding this script to your site:

CODE
<?
session_cache_expire (30);

session_start();

function users() {
   $count = 0;

   $suksess = opendir(session_save_path());
   if ($suksess == false) return -1;

   while (($file = readdir($suksess)) != false) {
       if (ereg("^sess", $file)) $count++;
   }
   closedir($suksess);
   return $count;
}

echo "Users online: " . users() . "<br>";

?>
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Music On My Site?(18)
  2. Help me(3)
  3. Site Designing(21)
  4. Add A Search Box To My Web Site(10)
  5. Web Site Trackers?(8)
  6. What Is The Best Language For Web Site ?(23)
  7. Get Afree Template For Your Site(3)
  8. How Do You Put Flash Into Your Site?(7)
  9. Find Out Dead Links In Your Site Automatically(11)
  10. Programing My Site(4)
  11. Free Shoutbox For Your Web-site(12)
  12. Good Site To Download Web Templates ?(21)
  13. Embeding Font Files(1)
  14. Redirecting All Htm Files To Php Site...(8)
  15. How Can You Spice Up Your Basic HTML Site ? Beginner Needs Help(9)
  1. How To Display XX Users Online On Your Site ?(5)
  2. Any Ideas About A Free Online Page Editor ?(7)
  3. With Or Without Tabs?(15)
  4. How Do I Keep A Background On My Site(14)
  5. Help Choose A New Banner For Me Please(11)
  6. Great Online Video Seminar(2)
  7. Thinking About An "audio" Web Site(4)
  8. Need Help With Multi-lingual Site Design(6)
  9. Free Online Cheatsheets(2)
  10. Cvs For Maintaining Your Site(0)
  11. Unicode Encoded Site - Characters Not Displaying Properly?(4)
  12. Stretching My Site Vertically(6)
  13. Website Navigation Hover Buttons Stick So Made Css Today(7)


 



- Lo-Fi Version Time is now: 2nd December 2008 - 01:20 AM