Az bir şey php bilginiz varsa $_GET ile, IP adreslerini veritabanına ya da dosyaya kaydedersiniz.
Örnek:
siteadi.com/sohbet.php?nick=ahmet gibi bir adres yapısı olsa;
Bu kod ile sohbet.php?nick=ahmet şeklinde giren herkesin ip adresi ve nicki logs.txt dosyasına kaydedilir.
Örnek:
siteadi.com/sohbet.php?nick=ahmet gibi bir adres yapısı olsa;
$nick = $_GET['nick'];
$ip = $_SERVER['REMOTE_ADDR'];
$tarih= date('d.m.Y - H:i:s');
$mesaj = "{$nick} adlı kullanıcı, {$ip} ip adresi ile {$tarih} tarihinde siteye giriş yaptı !";
$kaydedilecek_dosya = "logs.txt";
$ac = fopen("$kaydedilecek_dosya", "a") or die();
fwrite($ac, $mesaj );
fclose($ac);
Bu kod ile sohbet.php?nick=ahmet şeklinde giren herkesin ip adresi ve nicki logs.txt dosyasına kaydedilir.
Hocam bu kodu olduğu gibi php dosyasına mı ekleyeceğiz ? siteadi.com/sohbet.php bu sayfayamı ekleyeceğiz