Record Vistors ips address. Anyone know how

zenerchi

Regular Member
Joined
Jul 13, 2009
Messages
322
Reaction score
296
Hey.

Wondering if anyone can paste some code that will record the visitors ip that vists my .php link and then also some code that will direct everyone in the .txt file with the i.ps to one site and redirect everyone that isnt in the .txt file to another site.


major thanks rep and appreciation.
 
All i got is this =/ Hopefully it will help a little?
PHP:
<?php
$LogFileLocation = "iplogs.txt";
$fh = fopen($_SERVER['DOCUMENT_ROOT'].$LogFileLocation,'at');
fwrite($fh,date('dMy H:i:s')."\t".$_SERVER['REMOTE_ADDR']."\t".$_SERVER['REQUEST_URI']."\n");
fclose($fh);
echo 'Your IP has been logged.'
?>
 
Back
Top