Thread
:
How to fetch User's IP Address
View Single Post
bzforum
Go4Expert Member
28May2012,21:29
You can use this code
PHP Code:
Response
.
Write
(
Request
.
ServerVariables
[
"remote_addr"
]);
or
PHP Code:
Response
.
Write
(
Request
.
UserHostAddress
);
hope it helped..