Jesper_Kladden
Donator
Could someone mind posting me a fully working PHP script that could just be entered inside the index.html and it would place the IP Of the visitors inside a text document?
$ip = $_SERVER['REMOTE_ADDR'];
$string = "$ip ::";
$a = fopen("online.txt", "a");
fputs($a, $string);
fclose($a);
Notice: You need to edit this .html file to a .php file for this script above to work.