mikey3521 Posted December 12, 2008 Share Posted December 12, 2008 Hello, Pretty much what I'm trying to-do is show a website, Unless your ip is in a list, if your IP is in the list I just want to echo a msg at them, instead of showing the website. any thoughts? I don't need a separate file for the ip's just an array all 1 file so index.php if your ip = (123, 234,3545, 655) { then echo "howdy"} else { ""display wbesite"" fini, any thoughts on how to accomplish this? I know some basic php but the IP part is what's getting me. Link to comment https://forums.phpfreaks.com/topic/136598-filter-ip/ Share on other sites More sharing options...
trq Posted December 12, 2008 Share Posted December 12, 2008 <?php $ips = array('192.168.10.1','192.168.10.2'); if (in_array($_SERVER['REMOTE_ADDR'], $ips)) { die("you are not permitted to view this site"); } ?> Link to comment https://forums.phpfreaks.com/topic/136598-filter-ip/#findComment-713219 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.