What's Here?
- Members: 300,344
- Replies: 825,705
- Topics: 137,404
- Snippets: 4,417
- Tutorials: 1,147
- Total Online: 1,572
- Members: 114
- Guests: 1,458
|
Logs IP's of page visitors, and saves to a log HTML file.
IP's are anchored to dnsstuff.org's City from IP page.
|
Submitted By: tel0r
|
|
Rating:
 
|
|
Views: 34,903 |
Language: PHP
|
|
Last Modified: May 13, 2005 |
Instructions: Can be used within a current page, or added to a site via an IFrame. (maybe other ways to implement too?)
Auto Creates log.html,if file does not exist. |
Snippet
<?php
$logfile= '/full_path_to/log.html';
$IP = $_SERVER['REMOTE_ADDR'];
$logdetails= date("F j, Y, g:i a") . ': ' . '<a href=http://dnsstuff.com/tools/city.ch?ip='. $_SERVER['REMOTE_ADDR']. '>'. $_SERVER['REMOTE_ADDR']. '</a>';
$fp = fopen($logfile, "a");
?>
Copy & Paste
|
|
|
|