PHP
This guide will show you how to whitelist your GoodAccess IP address in PHP.
function isAllowed($ip){
$whitelist = array(‘111.111.111.111’, ‘112.112.112.112’); // If the ip is matched, return true
if(in_array($ip, $whitelist)) {
return true;
} return false;
}if (! isAllowed($_SERVER[‘REMOTE_ADDR’])) {
exit;
}Last updated
Was this helpful?