In the manual HTTP Functions has:

Code:
ip.php:
<?
$ip ="$REMOTE_ADDR";
echo "Your IP: $ip";
?>



That is incorrect. It should be:

Code:
<?php $ipaddress = $_SERVER['REMOTE_ADDR'];
echo "Your IP: $ipaddress";?>



Regards.

Last edited by DLively; 02/24/15 21:28.

A8 Pro 8.45.4
YouTube: Create Games For Free
Free Resources: www.CGForFree.com