Jump to content

how to let only certain ips use scripts on my site


devWhiz

Recommended Posts

Note, that there is no fool-proof way to do this since IP addresses can be spoofed. Plus, it may not be a good idea if your users have dynamic IP addresses from their host. Their IP address can change without warning, leaving them without access.

$allowed_ips = array('123.123.123.123', '125.125.125.125', '1.2.3.4', '11.22.33.44');
$user_ip = $_SERVER['REMOTE_ADDR'];

if(!in_array($user_ip, $allowed_ips))
{
    //User's IP not in allowed list
    echo "Go away";
    exit();
}
else
{
    //Show page
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.