- Impact
- 23
Need to track your visitors IP addy? So that if they cause any trouble towards your website you can block them! you can start tracking your visitors IP addy, browser type and the time of access! All for free!
Firstly upload the files log.php and log.html onto your web hosting account / server!
On the page(s) you want your visitors IP address to be logged place the code on
log.php to the top of that page!
And your now done!
To view your visitor's details visit the log.html file!
P.S. - to log a new entry on the log.html it make take up to 4 and a half minutes!
COPY CODE BELOW:
SAVE AS PHP FILE, LIKE INDEX.PHP
Then Upload this file
http://www.sendmefile.com/00307598 <<log.html
If you like the free script giving for you for security, feel free give me a Trade Rating. <<< I will provide more scripts for the first 3 Trade Rating
Firstly upload the files log.php and log.html onto your web hosting account / server!
On the page(s) you want your visitors IP address to be logged place the code on
log.php to the top of that page!
And your now done!
To view your visitor's details visit the log.html file!
P.S. - to log a new entry on the log.html it make take up to 4 and a half minutes!
COPY CODE BELOW:
Code:
<?php
$file = fopen("log.html", "a");
$time = date("H:i dS F");
fwrite($file, "<b>Time:</b> $time<br/>" );
if( $REMOTE_ADDR != null)
{
fwrite($file,"<b>Ip address:</b> $REMOTE_ADDR<br/>");
}
if( $HTTP_REFERER != null)
{
fwrite($file,"<b>Referer:</b> $HTTP_REFERER<br/>");
}
fwrite($file,"<b>Browser:</b> $HTTP_USER_AGENT<hr/>");
fclose($file)
?>
Then Upload this file
http://www.sendmefile.com/00307598 <<log.html
If you like the free script giving for you for security, feel free give me a Trade Rating. <<< I will provide more scripts for the first 3 Trade Rating






