Posts which you will also like.

Showing posts with label Know the IP address of others. Show all posts
Showing posts with label Know the IP address of others. Show all posts

Monday, November 29, 2010

How to know the IP address of others using coding.

To Get And Show The IP address:

To show the ip via JavaScript
Code:

var ip= '''''';
document.write("Your IP Address is :"+ip+" ");
*Remove double quotes in first line
________________________________________________________________________________
To show IP via ASP
code:
request.ServerVariables("REMOTE_ADDR")
________________________________________________________________________________
TO SHOW IP VIA PHP
Code:
$remote_address = getenv("REMOTE_ADDR");
echo "Your IP address is $remote_address.";
$browser_type = getenv("HTTP_USER_AGENT");
echo "You are using $browser_type.";
?>

Read More ->>
DMCA.com Protected by Copyscape Online Plagiarism Tool