Hi-
Why would this not produce an IP address:
$ip = getenv("REMOTE_ADDR");
echo $ip;
I have to instead use:
$ip = $_SERVER['REMOTE_ADDR'];
echo $ip;
--> PHP.NET and the author of my book talk about the first method. Any reasons or ideas are appreciated.
M