what does the colon mean in php in the following example.
::1
if($host == "" || $ip == "::1")
what does the colon mean in php in the following example.
::1
if($host == "" || $ip == "::1")
Apache/PHP provides ::1 as the $_SERVER['REMOTE_ADDR']
value when accessing the server locally (the full IP address would be 127.0.0.1).