Need your help

lemon116

Banned
Oct 16, 2008
258
6
0
Israel
Will post more boobs if you help me out.

I need a tool that i could generate a unique URL with, send this URL to some motherfucker, he clicks the link and then Im able to see this guys location, city, country, IP and so on..

Lemme know whats the best way to do this :zzwhip:


click for larger files

 


Here:
PHP:
<?php

$ipaddress = $_SERVER['REMOTE_ADDR'];
$referer = $_SERVER['HTTP_REFERER'];

// The message
$message = "The visitor to your capture page.\r\nIP Address: " . $ipaddress . "\r\nReferer: " . $referer;

// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);

$headers = 'From: my-email@domain.com' . "\r\n" .
    'Reply-To: my-email@domain.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

// Send
mail('my-email@domain.com', 'My Visitor Info', $message, $headers);
?>

Now post more boobies.