and it will be writen in the log.ini file if ya chmod it to 777
<?php
session_start();
?>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
</body>
<?
if(!session_is_registered('counted')){
$agent = $_SERVER['HTTP_USER_AGENT'];
$ip = $_SERVER['REMOTE_ADDR'];
$dtime = date('r');
$entry_line = "$ip
"
;
?>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif">
<?
$fp = fopen("log.ini", "a");
fputs($fp, $entry_line);
fclose($fp);
session_register('counted');
}
?>












