1
0
mirror of https://gitea.blesmrt.net/mikaela/scripts.git synced 2025-01-14 22:42:36 +01:00
scripts/php/IP.php

10 lines
107 B
PHP
Executable File

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