PHP İle İp Adresi Almak

Aşağıda vereceğim kod ile herhangi bir kullanıcının ip edresini kolayca alabilirsiniz.

if (getenv(HTTP_X_FORWARDED_FOR)) {
$ip = getenv(HTTP_X_FORWARDED_FOR);
} else {
$ip = getenv(REMOTE_ADDR);
}
echo $ip; //ip adresini verir
?>

Both comments and pings are currently closed.

Comments are closed.


-- Dumlupinar Universitesi Bilişim Kulübü