IP log tutmak [PHP]

I

Isko~

Merhaba spy ailesi,

bugun site kucuk basit bir kod ile ip log tutmasini gostercegim

qPzlZd.jpg

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)

92j5PN.jpg


Gördugunuz gibi ip'ler loglaniyor

saygilar
 
131,458Konular
3,268,388Mesajlar
315,188Kullanıcılar
tysharaSon Üye
Üst Alt