M
Mike
Disco Octopus said:Mike typed:
maybe you can make something of this.... do you have access to php?
place it in a standard included header file or somthing...
<?php
$logFile = "log.txt";
$logRec = "REMOTE_ADDR=". $_SERVER["REMOTE_ADDR"] . ",
HTTP_USER_AGENT=" . $_SERVER["HTTP_USER_AGENT"];
$logRec .= "\n";
$logFP = fopen ($logFile, 'a');
fputs ($logFP, $logRec);
fclose($logFP);
?>
I have been using this for a few days now and it works very well
so first of all thank you.
Second, is it possible to add a date and time field to the
information gathered, or at least the date? Then I could open the
txt file in Excel and analyse it [read: delude myself
heart's content. Cheers.
And again, many thanks,
Mike.