range filter
Moderator: General Moderators
range filter
i was trying to find a sample code to filter ip/block ip in 2 range ussing $_SERVER['REMOTE_ADDR']) filter option?
Re: range filter
Do it in the web server, not PHP.
Re: range filter
i found how to filter using php i have another question.
currently im redirecting to another location if ip is in blacklist, iwas trying now to find a way to stay in NULL if ip is in list,
does any one can modify code above to syaing in NULL or standbye or how can i say in php language.
currently im redirecting to another location if ip is in blacklist, iwas trying now to find a way to stay in NULL if ip is in list,
Code: Select all
die(header("Location: ".$blocked_redirect));Re: range filter
Exactly what do you mean with 'stay in NULL' ?
Re: range filter
doing nothing, disabling everything.loding nothing. stoping everything.
Re: range filter
Code: Select all
exit;Re: range filter
thank youApollo wrote:will do the trick.Code: Select all
exit;