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