Here is step by step tutorial which will show you how to create simple ip address finder. How it works? To find out IP address of your friend’s computer, you’ll need to send him link, when he or she click on link,he will be redirected to some website and ip addresses from his computer will be stored to text file. It is something like fake link , which will give you ip addresses. So , let’s begin
1) Download this file, and extract it to your computer. It is php script which represents our Ip finder.
2)When you downloaded file from step one, you’ll see ip_finder.php and text.txt . These files you’ll need to upload to server.
Go to this free hosting site 110mb.com and create your account.

4) Here upload ip_finder.php and text.txt , click upload files

5)Right click on ip_finder and and copy link location

Link looks like this http://youdomainname/ip_finder.php , in my example it is http://hscripts.110mb.com/ip_finder.php
Send link to your friend and when he click it, his ip address will bi written to text.txt , so open text. txt file


For those who want to know more, here is an explanation of php script
Code looks like this :
$_SERVER["REMOTE_ADDR"] - return ip addresses to variable $ip_address
fwrite($file, $file2)- write variable $file2 to $file , $file is our text.txt
META HTTP-EQUIV=”Refresh” CONTENT=”0; URL=http://hackspc.com” - this meta tag redirect link to http://hackspc.com, you can set diffrenr redirection url , just change URL=http://hackspc.com”
Note: This post is to be used for educational purposes only
3) Login to your account and go file manager
1) Download this file, and extract it to your computer. It is php script which represents our Ip finder.
2)When you downloaded file from step one, you’ll see ip_finder.php and text.txt . These files you’ll need to upload to server.
Go to this free hosting site 110mb.com and create your account.

4) Here upload ip_finder.php and text.txt , click upload files

5)Right click on ip_finder and and copy link location

Link looks like this http://youdomainname/ip_finder.php , in my example it is http://hscripts.110mb.com/ip_finder.php
Send link to your friend and when he click it, his ip address will bi written to text.txt , so open text. txt file


For those who want to know more, here is an explanation of php script
Code looks like this :
<?php
$ip_address = $_SERVER['REMOTE_ADDR'];
$file=fopen("text.txt","a");
$file2 = "Friends Ip Addresses ($ip_address) '\n' ";
fwrite($file, $file2);
fclose($file);
?>
<html>
<head>
<META HTTP-EQUIV="Refresh" CONTENT="0;
URL=http://hackspc.com">
<title>PC Hacks </title>
</head>
<body>
</body>
</html>
$_SERVER["REMOTE_ADDR"] - return ip addresses to variable $ip_address
fwrite($file, $file2)- write variable $file2 to $file , $file is our text.txt
META HTTP-EQUIV=”Refresh” CONTENT=”0; URL=http://hackspc.com” - this meta tag redirect link to http://hackspc.com, you can set diffrenr redirection url , just change URL=http://hackspc.com”
Note: This post is to be used for educational purposes only
3) Login to your account and go file manager