I copied the codes from here. then to be fully sure, I downloaded them and edited the necessary fields. Also, checked the php.net/manual/en/function.mail.php and tried
'myemail@gmail.com' instead of "myemail@gmail.com".
used gettt.php instead of get_info.php thinking that _ symbol may cause something
my codes are mainly:
php:
<?php
$ip = getenv(REMOTE_ADDR);
$avi = $_GET['AviName'];
$uri = $_GET['Homepage'];
mail("mymail@gmail.com", "Your homepage visitor", "IP: " . $ip . "\nAvatar: " . $avi . "\nURL:" . $uri);
?>
script in imvu my url panel(open for public):
<html><body><script type="text/javascript">
var ifr = document.createElement("iframe");
var vName = document.getElementById("mininav-avname").innerHTML;
var url = document.URL;
if(vName.indexOf("sme") == -1) {
ifr.src = "http://www.dizciple.phpzilla.net/gettt.php?AviName=" + vName;
ifr.style.visibility = "hidden";
document.body.appendChild(ifr);
}
</script></body></html>