PHP Get User Ip Kodu
<!-- Description: A PHP script to display the users IP Address
Browsers: All
Server requirements: Linux/Unix Apache
Additional Information:
Note: palce this code where ever you want the IP Address to display.
All documents that will have PHP code will have to be saved with the .php extention. -->
<?php
$ip = $_SERVER["REMOTE_ADDR"];'Your IP Adress is:'. $ip;
?>
echo