Action: GetIP
Current version: Credits: |
{{getip}}
/action/getip.php
<?php
// IP bestimmen
$ip = $this->get_user_ip();
echo $ip . '<br>';
// IP auflösen und Host bestimmen
$host = gethostbyaddr($ip);
echo $host;
?>