I wrote the code that save the ip of client into logs.txt but i want to remove the additional ip from the logs.txt . what am i going to do ?
$at = $_SERVER['REMOTE_ADDR'];
$log = fopen("logs.txt", "a");
fwrite($log, $at ."\n");
fclose($log);
Thanks in advance .