How to know ip address and browser information of your website visitor
Posted on: 17 Oct 2011 - 12:47 am, Post by: MD.Anisur Rahman Bhuyan
» Create a new php file with any name like ip.php
» Now open this file using any php file editor or notepad, wordpad
» And Copy and paste the code given below :
<?php$ip=$_SERVER['HTTP_USER_AGENT'];
$brw=$_SERVER['REMOTE_ADDR'];
echo"your ip is : $ip
Your browser is : $brw";
?>
» Now save the file and upload to your web server and check this url ,you will get the result.
Note that ip is short form of Internet protocol.Its your main identity on the internet.
Thank you for reading this post

