vote up -2 vote down star

Hey there,

I'm wanting to do something similar to this: http://stackoverflow.com/questions/594112/matching-an-ip-to-a-cidr-mask-in-php5

Except, I want to store a list of disallowed IP/Masks in a MySQL table and check for a match.

Just like the example in the link, something like '10.2.0.0/16' would be a row in the table and then I want to check the IP address of the current user ($_SERVER['REMOTE_ADDR']) and check if it matches or not.

Thanks a lot :)

flag
1  
Seams like you know perfectly well what you want and are trying to have your homework done... I really don't see any question there. – Frankie Oct 30 at 3:54
@ShaunO: So what's your question? What part are you having difficulty with? Please edit the question to let us know. – Brian Cline Oct 30 at 4:00

1 Answer

vote up 0 vote down

The php.net documentation for ip2long() has a good example of working code in the comments: http://www.php.net/manual/en/function.ip2long.php#86793

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.