Restore IP.php & create IPTITLE.php.

This commit is contained in:
Mikaela Suomalainen 2014-06-14 20:11:07 +03:00
parent 41ccd50dd4
commit 4f9c4cafd2
2 changed files with 18 additions and 0 deletions

9
IP.php Normal file
View File

@ -0,0 +1,9 @@
<?php
header("Content-Type: text/plain; charset=utf-8");
$IP = $_SERVER['REMOTE_ADDR'];
echo "$IP";
?>

9
IPTITLE.php Normal file
View File

@ -0,0 +1,9 @@
<?php
header("Content-Type: text/plain; charset=utf-8");
$IP = $_SERVER['REMOTE_ADDR'];
echo "<title>$IP</title>";
?>