[PHP] Log site visitors
Any good webmaster knows that it is important to keep logs of everything that happens on his site. So here is come quick PHP code I wrote to help you log the ip, time, and date of each site view.
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$time = date("g:ia");
$date = date('m:d:y');
$file = 'log.txt';
$handle = fopen("$file", "a");
fwrite($handle, 'Ip = ');
fwrite($handle, "$ip \n");
fwrite($handle, 'Time = ');
fwrite($handle, "$time \n");
fwrite($handle, 'Date = ');
fwrite($handle, "$date \n");
fwrite($handle, '');;
fclose($handle);
?>
rk effeciently.