By.KaBuS weB MaSteR
Mesaj Sayısı : 223 Kayıt tarihi : 13/06/09 Yaş : 31 Nerden : Notalar İcinden Lakap : By.KaBuS
| Konu: Sitede online kişi sayısı Ptsi Haz. 15, 2009 9:05 pm | |
| - Kod:
-
<html> <head> <title>Daily Counter</title> <script language="Javascript"> <!-- function closeWin() { self.close(); } function openWindow() { window.open('visitors.php','Visitors','scrollbars= yes,width=420,height=210'); } //--> </script> <style type="text/css"> <!-- .links { color: #000000} --> </style> </head> <body bgcolor="#FFFFFF"> <center> <br> <br>
<table border="0" cellspacing="1" cellpadding="2" align="center"> <tr> <td> <font face="Verdana, Arial, Helvetica, sans-serif" size="1">
<!--Cut here -->
<?php // Daily Counter 1.1 // Copyright (c)2000 Chi Kien Uong // URL: [url=http://www.proxy2.de/][color=#0049aa]http://www.proxy2.de[/color][/url]
// - chmod this document to 755! -
$fpt = "daily.txt"; // path to counter log file - chmod it to 666
// optional configuration settings
$lock_ip =0; // IP locking and logging 1=yes 0=no $ip_lock_timeout =30; // in minutes $fpt_ip = "ip.txt"; // IP log file - chmod it to 666
// end configuration
function checkIP($rem_addr) { global $fpt_ip,$ip_lock_timeout; $ip_array = @file($fpt_ip); $reload_dat = fopen($fpt_ip,"w"); $this_time = time(); for ($i=0; $i<sizeof($ip_array); $i++) { list($time_stamp,$ip_addr,$hostname) = split("\|",$ip_array[$i]); if ($this_time < ($time_stamp+60*$ip_lock_timeout)) { if ($ip_addr == $rem_addr) { $found=1; } else { fwrite($reload_dat,"$time_stamp|$ip_addr|$hostname "); } } } $host = gethostbyaddr($rem_addr); if (!$host) { $host = $rem_addr; } fwrite($reload_dat,"$this_time|$rem_addr|$host\n") ; fclose($reload_dat); return ($found==1) ? 1 : 0; }
$this_day=(date("D, j F Y")); if (!file_exists($fpt)) { $count_dat = fopen($fpt,"w+"); $count = 1; fwrite($count_dat,$count); fclose($count_dat); } else { $row = file($fpt); $test = chop($row[0]); $count = $row[1]; if ($this_day == $test) { if ($lock_ip==0 || ($lock_ip==1 && checkIP($REMOTE_ADDR)==0)) { $count++; } } else { $count = 1; } $count_dat = fopen($fpt,"w+"); fwrite($count_dat,"$this_day\n"); fwrite($count_dat,$count); fclose($count_dat); } echo "$this_day<br><b><a href=\"javascript:penWindow()\" class=\"links\">Bugün</a> <font color=#CC0066>$count</font> ziyaretçi</b>";
?>
<!--Cut here --> </font> </td> </tr> </table> </center> </body> </html>
| |
|