speedtest/getIP.php

5 lines
73 B
PHP
Raw Normal View History

<?php
$ip = $_SERVER['REMOTE_ADDR'];
echo "getIP({\"ip\":\"$ip\"});";
?>