IP: add PHP page to show only IP.

This commit is contained in:
Mikaela Suomalainen 2012-08-17 18:09:36 +03:00
parent c68e42b3d8
commit 1d7e3c8442

7
IP.php Normal file
View File

@ -0,0 +1,7 @@
<?php
$IP = getenv(REMOTE_ADDR);
echo "$IP";
?>