Skip to content

Instantly share code, notes, and snippets.

@Mat-Xel
Mat-Xel / PHP IP Logger
Created November 29, 2010 21:11
(c) Mat-Xel
----- INDEX ----
<?php
$addr=getenv('REMOTE_ADDR');
$dt=date("d/m/Y - H:i:s");
$write=$dt.(" => ").$addr."\n";
$file=fopen("iplog/iplog.txt","a") or die("Error");
fwrite($file,$write);
?>