w00t!! Another Mod
This will resolve the IP and display it after the text with the location.
In vbipplot.php find:
And add directly before;
PHP Code:
unset($resolved);
unset($ipres);
$resolved = gethostbyaddr($values["address"]);
if ($values["address"] == $resolved) {
$ipres="The IP address <b>$values[address]</b> could not be resolved to a hostname.";
} else {
$ipres="The IP address <b>$values[address]</b> resolved to <b>$resolved</b>.";
}
Next find:
PHP Code:
if(isset($address)) {
print "$values[desc]";
And add directly after (and before the } which directly follows):
PHP Code:
print "<br>";
print "$ipres";
This will now display the resolved IP address (where it can be resolved of course

)