To Get And Show The Ip Via Javascript

December 30, 2009 by: umarif

var ip= ‘<!–#echo var=”REMOTE_ADDR”–>’;
document.write(”Your IP Address is :”+ip+” “);
________________________________________________________________________________
__________________
To show IP via ASP

request.ServerVariables(”REMOTE_ADDR”)
________________________________________________________________________________
__________________
TO SHOW IP VIA PHP

<?
$remote_address = getenv(”REMOTE_ADDR”);
echo “Your IP address is $remote_address.”;
$browser_type = getenv(”HTTP_USER_AGENT”);
echo “You are using $browser_type.”;
?>

More Resources:

  1. Anonymity Of Proxy learn it insideout
  2. PHP Navigations
  3. Dos User - No Boot Dos Disk, No Edit.com,How to create Imp Files
  4. Problem With Internet Navigation, Clean Host File
  5. How to Set Up a Http Server Running from you Computer
Filed under: Tutorials
Tags:

Leave a Reply

You must be logged in to post a comment.