Jump to content

Recommended Posts

well I was wanting to make scripts to put on my site and then only let a few people use the site by the ip address, what would be the best way to allow only certain people to use the script on the site, based on the ip?

 

Thanks

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
}

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.