View Single Post
Old 03-14-2010, 05:20 PM  
jwerd
Confirmed User
 
Industry Role:
Join Date: Jun 2003
Location: Costa Rica
Posts: 1,953
Quote:
Originally Posted by wdsguy View Post
I'm hoping someone can help me with a quick php question

I have the following on my signup

if($ip=getIp()){
if(!in_array($ip,$CFG['skipipcheck'])&&sign_up_check_ip($ip))
error_quit( "You already have an account.");
}


basically it grabs the users signup ip and then checks if it already exists in the system - if it does it will not let them signup.

How would I modify it to check against an array of ips? I want it to check if the users signup ip matches a couple of blacklisted ips and if it does i don't want them to be able to signup.


Thanks
I'm assuming if they are black listed, you don't want to mention to them that they "already have an account" so the easiest way would be an else if:

// above code yada,yada
} else if(in_array($ip, $blacklisted)) {
error_quit("Sorry bud, nice try.");
}

and blacklisted would be an array like $blacklisted = array('192.168.1.1', '192.168.1.2'); etc..

Good luck!
__________________
Yii Framework Guru - Seasoned PHP vet - Partner @ XXXCoupon.com
jwerd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote