mikaela.github.io/IPTITLE.php
Mikaela Suomalainen 7e72789540 chmod
2014-06-14 20:15:54 +03:00

14 lines
225 B
PHP
Executable File

<?php
header("Content-Type: text/plain; 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>';
?>