mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-01 00:19:22 +01:00
14 lines
224 B
PHP
14 lines
224 B
PHP
|
<?php
|
||
|
|
||
|
header("Content-Type: text/html; charset=utf-8");
|
||
|
|
||
|
$IP = $_SERVER['REMOTE_ADDR'];
|
||
|
|
||
|
echo '<!DOCTYPE html>';
|
||
|
echo '<head>';
|
||
|
echo '<meta charset="UTF-8" />';
|
||
|
echo "<title>$IP</title>";
|
||
|
echo '</head>';
|
||
|
echo '</html>';
|
||
|
?>
|