rename function names

This commit is contained in:
2018-01-05 13:17:35 +01:00
parent e5f6c39224
commit a720d581d5

View File

@@ -24,7 +24,7 @@ if($method === "simple") { // simple
exit;
} elseif($method === "myself" ) { // detailed info about own IP
$ip = $_SERVER['REMOTE_ADDR'];
header();
print_header();
show_http_headers();
show_hostname($ip);
show_reverse($hostname);
@@ -32,14 +32,14 @@ if($method === "simple") { // simple
show_whois($ip);
} elseif($method === "ip" ) { // detailed info an IP
$ip = $t;
header();
print_header();
show_hostname($ip);
show_reverse($hostname);
show_ipinfo($ip);
show_whois($ip);
} elseif($method === "dns" ) { // detailed info a host name
$hostname = $t;
header();
print_header();
show_reverse($hostname);
show_dnsrecords($hostname);
show_whois($hostname);
@@ -48,7 +48,7 @@ if($method === "simple") { // simple
header("Location:/".$config->detailed_uri."");
exit;
}
footer();
print_footer();
// HTTP HEADERS
function show_http_headers() {
@@ -155,7 +155,7 @@ function show_dnsrecords($hostname) {
}
}
// PRINT Header
function header() {
function print_header() {
print '<!DOCTYPE html>
<html lang="en_US">
<head>
@@ -165,7 +165,7 @@ function header() {
</head>';
}
// PRINT FOOTER
function footer() {
function print_footer() {
global $config;
echo "<br /><hr /><br />\n";
echo 'Your plain IP address: <a href="//'.$config->ip4domain.'">IPv4</a> | <a href="//'.$config->ip6domain.'">IPv6</a>';