Re: how to get ip address of client in php script???
You can get the IP by using the following bit of code:
### get IP address ###
$ip = (getenv(HTTP_X_ FORWARDED_FOR))
? getenv(HTTP_X_F ORWARDED_FOR)
: getenv(REMOTE_A DDR);
Best regards,
Michel
"vishal" <vishal_panjabi @yahoo.co.in> wrote in message
news:1112091132 .096095.326250@ f14g2000cwb.goo glegroups.com.. .[color=blue]
> how can i get ip address of client in my php script???
>
>
> thxs
>[/color]
Comment