Returning IP address

Blade

Member
Hi,

Before the site went down a while ago, Dan (Electron) put up a php page that would return the internet IP address for a person.

Is there anyway of getting this back. I know it would benefit me a lot. It was vbery helpful.

Cheers
Blade
 
Here is a harder way:

Make a asp webpage with:

<html>
<body>

IP address = <%=Request.ServerVariables("REMOTE_ADDR")%>

</body>
</html>

Then visit the page. :)
 
And a harder way:

<%@LANGUAGE=PerlScript%>
<html>
<body>

<%
$Response->write(
sprintf( "IP address = %s",
$Request->ServerVariables(
"REMOTE_ADDR" )->item ) );
%>

</body>
</html>


:)
 
Back
Top