mikaela.github.io/php/IPTITLE.php
Mikaela Suomalainen f78069c4f0 Create new folder php/ and put php files there.
* Also put symlinks for backwards compatibility.
2014-06-23 17:30:48 +03:00

14 lines
224 B
PHP
Executable File

<?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>';
?>