I want a text at the bottom off my page where the users(the client) ip will be displayed... <br><br>Like "Your IPadress is: 194.14.99.134". Greetings, PerJ
You should use:
<?
$address = getenv("REMOTE_ADDR");
echo "Your IP address is $address.";
?>
Felipe Lopes
Thanks