hello webmasters How do I get the IP address of the visitors who are coming to my website? thanks in advance Regards Arun
you can add a small code snippet in your website code that reads the IP (pretty easy even a total noob can write such a thing by searching in google) and writes it to a fire (xml or whatever) that you can download regularly or to your database so that you can use the structured data however you need it....
Example, if you use PHP (make sure file ips.dat is writable): <?php $fh = fopen('ips.dat', 'a') or die('error'); fwrite($fh, $_SERVER['REMOTE_ADDR'] . "\n"); fclose($fh); ?>
go to google webmaster tools and register your account Then add ur site and u will see all the ip address of the users who are coming to ur site