<?php
/*
* ip__allocation.php
*
*/
$MyClient=FALSE;
if (isset($_SERVER['REMOTE_ADDR']))
{
include 'ip_in_range.php';
$clientIP=$_SERVER["REMOTE_ADDR"];
$IPAllocation = array(
'192.168.1.0-192.168.1.255',
'192.168.2.0-192.168.2.255'
'127.0.0.1',
);
foreach ($IPAllocation as $addressRange) {
if (ip_in_range($clientIP, $addressRange))
{
$MyClient=TRUE;
break;
}
}
}
?>