$ip = $_SERVER['REMOTE_ADDR'];
if ( !file_exists("ipkayit.txt")) {
touch("ipkayit.txt");
$file = @fopen("ipkayit.txt", "+r");
@fclose($file);
header( 'refresh: 1; url=/' );
} else {
$file = @fopen("https://anket.ardenfc.com/wp-content/ipkayit.txt", "a");
$text = "-----------------------------". "\r\n" . "Tarih : " . date('d/m/Y - H:i') . "\r\n" . "IP Adresi :" . "\r\n" . $ip . "\r\n". "-----------------------------" . "\r\n";
@fwrite($file, $text);
@fclose($file);
}
?>