Ip adress

Im making a website where people can send emails without using there email adress. But to avoid abuse I’d like to fetch a users ip-adress. How do I show the users IP-adress on the screen using actionscript? or how do I fetch it in PHP?

Thanx in advanced.

in PHP:

$_ENV[‘REMOTE_ADDR’];

for example:

<?php
$ip = $_ENV[‘REMOTE_ADDR’];
print “Your IP is $ip !”;
?>

Ehm,… i tried the above but it doesnt work.