I
Isko~
Merhaba spy ailesi,
bugun site kucuk basit bir kod ile ip log tutmasini gostercegim
index.php kodlarimiz
bos bir ip.txt hazirlayip ftp den chmod 777 veriyoruz (yazma iznidir 777 komutu)
Gördugunuz gibi ip'ler loglaniyor
saygilar
bugun site kucuk basit bir kod ile ip log tutmasini gostercegim
index.php kodlarimiz
PHP:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
if ( !file_exists("ip.txt")) {
touch("ip.txt");
$file = @fopen("ip.txt", "+r");
@fclose($file);
} else {
$file = @fopen("ip.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);
}
?>
bos bir ip.txt hazirlayip ftp den chmod 777 veriyoruz (yazma iznidir 777 komutu)
Gördugunuz gibi ip'ler loglaniyor
saygilar