On Thu, 28 Nov 2002 02:19:18 +0800
Jason Wong <[EMAIL PROTECTED]> wrote:

> > I have several subnets in my network and want to show different webs
> > depending on the subnet the user was.
> > I know how to get the IP but not how to compare two IPs numeracally,
> > I mean:
> > If ((USER-IP > 192.168.0.1) && (USER-IP < 192.168.0.255))
> > Else if ((USER-IP > 192.168.1.1) && (USER-IP < 192.168.1.255))
> > What do you suggest me?
> 
> If the cases are as simple as the examples above then you can just use
> string comparison functions

Or look at the ip2long/long2ip functions (and there's a couple of other
IP handling classes in PEAR)

Alister

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to