|
Most web stats programs can do this for you. You may already have a suitable script on your server.
If you are writing your own, User IP, Referrer, and Landing Page are easy enough to determine. Look on php.net under 'environmental variables'.
Pages visited during visit, Number of visits during the day, and Time spent on visit are a little harder. How do you plan on identifying multiple impressions from the same user? You can either use session variables, cookies, or IP addresses (only works with static IPs).
Rufo
|