Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 3 users online
 o Most users online: 67
 o Home
  o PHP
   o Online Communities
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o designplace
 o Wedding Vendor Directory
 o devnet
 o Open Source Design
 o OxyScripts
 o Free Wedding Websites

Users Online (Rated 0)

Description:

Shows the amount of users online at a time.

Written by CyberKill3r at Tutorial Forums

Code starts here


<?php
//vars
$file_name = "whois_online.dat.php";
$c_time = time();
$timeout = 300;
$time = $c_time - $timeout;
$ip = getenv("REMOTE_ADDR");

if(!
file_exists($file_name)){
$fp = fopen($file_name, "w");
fwrite($fp, "<?php die('Restricted File');?> \n");
fclose($fp);
}

//write to file
$fp = fopen($file_name, "a");
$write = $ip."||".$c_time."\n";
fwrite($fp, $write);
fclose($fp);

//open file to as array, to count online
$file_array = file($file_name);
$online_array = array();
for(
$x = 1; $x < count($file_array); $x++){
list(
$ip, $ip_time) = explode("||", $file_array[$x]);
if(
$ip_time >= $time){
array_push($online_array, $ip);
}
}
//end for

$online = array_unique($online_array);
$online = count($online);
if(
$online == "1"){
print
"User online: $online"."<br>";
}else{
print
"Users online: $online"."<br>";
}
?>

Last Edited: August 8, 2003, 5:35 pm


Submitted by Devscripts on 08-08-2003 17:35


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net